diff options
Diffstat (limited to 'crates/ide_assists/src/lib.rs')
-rw-r--r-- | crates/ide_assists/src/lib.rs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/ide_assists/src/lib.rs b/crates/ide_assists/src/lib.rs index 4c067d451..9c8148462 100644 --- a/crates/ide_assists/src/lib.rs +++ b/crates/ide_assists/src/lib.rs | |||
@@ -114,8 +114,8 @@ mod handlers { | |||
114 | mod apply_demorgan; | 114 | mod apply_demorgan; |
115 | mod auto_import; | 115 | mod auto_import; |
116 | mod change_visibility; | 116 | mod change_visibility; |
117 | mod convert_for_to_iter_for_each; | ||
118 | mod convert_integer_literal; | 117 | mod convert_integer_literal; |
118 | mod convert_comment_block; | ||
119 | mod early_return; | 119 | mod early_return; |
120 | mod expand_glob_import; | 120 | mod expand_glob_import; |
121 | mod extract_function; | 121 | mod extract_function; |
@@ -132,8 +132,8 @@ mod handlers { | |||
132 | mod generate_enum_projection_method; | 132 | mod generate_enum_projection_method; |
133 | mod generate_from_impl_for_enum; | 133 | mod generate_from_impl_for_enum; |
134 | mod generate_function; | 134 | mod generate_function; |
135 | mod generate_getter; | ||
136 | mod generate_getter_mut; | 135 | mod generate_getter_mut; |
136 | mod generate_getter; | ||
137 | mod generate_impl; | 137 | mod generate_impl; |
138 | mod generate_new; | 138 | mod generate_new; |
139 | mod generate_setter; | 139 | mod generate_setter; |
@@ -156,6 +156,7 @@ mod handlers { | |||
156 | mod reorder_fields; | 156 | mod reorder_fields; |
157 | mod reorder_impl; | 157 | mod reorder_impl; |
158 | mod replace_derive_with_manual_impl; | 158 | mod replace_derive_with_manual_impl; |
159 | mod replace_for_loop_with_for_each; | ||
159 | mod replace_if_let_with_match; | 160 | mod replace_if_let_with_match; |
160 | mod replace_impl_trait_with_generic; | 161 | mod replace_impl_trait_with_generic; |
161 | mod replace_let_with_if_let; | 162 | mod replace_let_with_if_let; |
@@ -177,11 +178,10 @@ mod handlers { | |||
177 | apply_demorgan::apply_demorgan, | 178 | apply_demorgan::apply_demorgan, |
178 | auto_import::auto_import, | 179 | auto_import::auto_import, |
179 | change_visibility::change_visibility, | 180 | change_visibility::change_visibility, |
180 | convert_for_to_iter_for_each::convert_for_to_iter_for_each, | ||
181 | convert_integer_literal::convert_integer_literal, | 181 | convert_integer_literal::convert_integer_literal, |
182 | convert_comment_block::convert_comment_block, | ||
182 | early_return::convert_to_guarded_return, | 183 | early_return::convert_to_guarded_return, |
183 | expand_glob_import::expand_glob_import, | 184 | expand_glob_import::expand_glob_import, |
184 | move_module_to_file::move_module_to_file, | ||
185 | extract_struct_from_enum_variant::extract_struct_from_enum_variant, | 185 | extract_struct_from_enum_variant::extract_struct_from_enum_variant, |
186 | fill_match_arms::fill_match_arms, | 186 | fill_match_arms::fill_match_arms, |
187 | fix_visibility::fix_visibility, | 187 | fix_visibility::fix_visibility, |
@@ -191,12 +191,12 @@ mod handlers { | |||
191 | generate_default_from_enum_variant::generate_default_from_enum_variant, | 191 | generate_default_from_enum_variant::generate_default_from_enum_variant, |
192 | generate_derive::generate_derive, | 192 | generate_derive::generate_derive, |
193 | generate_enum_is_method::generate_enum_is_method, | 193 | generate_enum_is_method::generate_enum_is_method, |
194 | generate_enum_projection_method::generate_enum_try_into_method, | ||
195 | generate_enum_projection_method::generate_enum_as_method, | 194 | generate_enum_projection_method::generate_enum_as_method, |
195 | generate_enum_projection_method::generate_enum_try_into_method, | ||
196 | generate_from_impl_for_enum::generate_from_impl_for_enum, | 196 | generate_from_impl_for_enum::generate_from_impl_for_enum, |
197 | generate_function::generate_function, | 197 | generate_function::generate_function, |
198 | generate_getter::generate_getter, | ||
199 | generate_getter_mut::generate_getter_mut, | 198 | generate_getter_mut::generate_getter_mut, |
199 | generate_getter::generate_getter, | ||
200 | generate_impl::generate_impl, | 200 | generate_impl::generate_impl, |
201 | generate_new::generate_new, | 201 | generate_new::generate_new, |
202 | generate_setter::generate_setter, | 202 | generate_setter::generate_setter, |
@@ -210,6 +210,7 @@ mod handlers { | |||
210 | move_bounds::move_bounds_to_where_clause, | 210 | move_bounds::move_bounds_to_where_clause, |
211 | move_guard::move_arm_cond_to_match_guard, | 211 | move_guard::move_arm_cond_to_match_guard, |
212 | move_guard::move_guard_to_arm_body, | 212 | move_guard::move_guard_to_arm_body, |
213 | move_module_to_file::move_module_to_file, | ||
213 | pull_assignment_up::pull_assignment_up, | 214 | pull_assignment_up::pull_assignment_up, |
214 | qualify_path::qualify_path, | 215 | qualify_path::qualify_path, |
215 | raw_string::add_hash, | 216 | raw_string::add_hash, |
@@ -221,6 +222,7 @@ mod handlers { | |||
221 | reorder_fields::reorder_fields, | 222 | reorder_fields::reorder_fields, |
222 | reorder_impl::reorder_impl, | 223 | reorder_impl::reorder_impl, |
223 | replace_derive_with_manual_impl::replace_derive_with_manual_impl, | 224 | replace_derive_with_manual_impl::replace_derive_with_manual_impl, |
225 | replace_for_loop_with_for_each::replace_for_loop_with_for_each, | ||
224 | replace_if_let_with_match::replace_if_let_with_match, | 226 | replace_if_let_with_match::replace_if_let_with_match, |
225 | replace_if_let_with_match::replace_match_with_if_let, | 227 | replace_if_let_with_match::replace_match_with_if_let, |
226 | replace_impl_trait_with_generic::replace_impl_trait_with_generic, | 228 | replace_impl_trait_with_generic::replace_impl_trait_with_generic, |