aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_assists/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ide_assists/src/lib.rs')
-rw-r--r--crates/ide_assists/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ide_assists/src/lib.rs b/crates/ide_assists/src/lib.rs
index 16af72927..d64233315 100644
--- a/crates/ide_assists/src/lib.rs
+++ b/crates/ide_assists/src/lib.rs
@@ -186,6 +186,7 @@ mod handlers {
186 mod convert_iter_for_each_to_for; 186 mod convert_iter_for_each_to_for;
187 mod convert_into_to_from; 187 mod convert_into_to_from;
188 mod convert_tuple_struct_to_named_struct; 188 mod convert_tuple_struct_to_named_struct;
189 mod convert_tuple_variant_to_named_variant;
189 mod early_return; 190 mod early_return;
190 mod expand_glob_import; 191 mod expand_glob_import;
191 mod extract_function; 192 mod extract_function;
@@ -256,6 +257,7 @@ mod handlers {
256 convert_iter_for_each_to_for::convert_iter_for_each_to_for, 257 convert_iter_for_each_to_for::convert_iter_for_each_to_for,
257 convert_into_to_from::convert_into_to_from, 258 convert_into_to_from::convert_into_to_from,
258 convert_tuple_struct_to_named_struct::convert_tuple_struct_to_named_struct, 259 convert_tuple_struct_to_named_struct::convert_tuple_struct_to_named_struct,
260 convert_tuple_variant_to_named_variant::convert_tuple_variant_to_named_variant,
259 early_return::convert_to_guarded_return, 261 early_return::convert_to_guarded_return,
260 expand_glob_import::expand_glob_import, 262 expand_glob_import::expand_glob_import,
261 extract_struct_from_enum_variant::extract_struct_from_enum_variant, 263 extract_struct_from_enum_variant::extract_struct_from_enum_variant,