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 3e2c82dac..1c55b9fbf 100644
--- a/crates/ide_assists/src/lib.rs
+++ b/crates/ide_assists/src/lib.rs
@@ -118,6 +118,7 @@ mod handlers {
118 mod convert_comment_block; 118 mod convert_comment_block;
119 mod convert_iter_for_each_to_for; 119 mod convert_iter_for_each_to_for;
120 mod convert_into_to_from; 120 mod convert_into_to_from;
121 mod convert_tuple_struct_to_named_struct;
121 mod early_return; 122 mod early_return;
122 mod expand_glob_import; 123 mod expand_glob_import;
123 mod extract_function; 124 mod extract_function;
@@ -187,6 +188,7 @@ mod handlers {
187 convert_comment_block::convert_comment_block, 188 convert_comment_block::convert_comment_block,
188 convert_iter_for_each_to_for::convert_iter_for_each_to_for, 189 convert_iter_for_each_to_for::convert_iter_for_each_to_for,
189 convert_into_to_from::convert_into_to_from, 190 convert_into_to_from::convert_into_to_from,
191 convert_tuple_struct_to_named_struct::convert_tuple_struct_to_named_struct,
190 early_return::convert_to_guarded_return, 192 early_return::convert_to_guarded_return,
191 expand_glob_import::expand_glob_import, 193 expand_glob_import::expand_glob_import,
192 extract_struct_from_enum_variant::extract_struct_from_enum_variant, 194 extract_struct_from_enum_variant::extract_struct_from_enum_variant,