diff options
Diffstat (limited to 'crates/assists/src/lib.rs')
-rw-r--r-- | crates/assists/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/assists/src/lib.rs b/crates/assists/src/lib.rs index a18232877..83fbf6986 100644 --- a/crates/assists/src/lib.rs +++ b/crates/assists/src/lib.rs | |||
@@ -117,6 +117,7 @@ mod handlers { | |||
117 | mod convert_integer_literal; | 117 | mod convert_integer_literal; |
118 | mod early_return; | 118 | mod early_return; |
119 | mod expand_glob_import; | 119 | mod expand_glob_import; |
120 | mod extract_function; | ||
120 | mod extract_struct_from_enum_variant; | 121 | mod extract_struct_from_enum_variant; |
121 | mod extract_variable; | 122 | mod extract_variable; |
122 | mod fill_match_arms; | 123 | mod fill_match_arms; |
@@ -175,6 +176,7 @@ mod handlers { | |||
175 | early_return::convert_to_guarded_return, | 176 | early_return::convert_to_guarded_return, |
176 | expand_glob_import::expand_glob_import, | 177 | expand_glob_import::expand_glob_import, |
177 | move_module_to_file::move_module_to_file, | 178 | move_module_to_file::move_module_to_file, |
179 | extract_function::extract_function, | ||
178 | extract_struct_from_enum_variant::extract_struct_from_enum_variant, | 180 | extract_struct_from_enum_variant::extract_struct_from_enum_variant, |
179 | extract_variable::extract_variable, | 181 | extract_variable::extract_variable, |
180 | fill_match_arms::fill_match_arms, | 182 | fill_match_arms::fill_match_arms, |