aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_assists/src/lib.rs')
-rw-r--r--crates/ra_assists/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs
index 66854cb5a..fa3d3913f 100644
--- a/crates/ra_assists/src/lib.rs
+++ b/crates/ra_assists/src/lib.rs
@@ -123,6 +123,7 @@ mod handlers {
123 mod replace_qualified_name_with_use; 123 mod replace_qualified_name_with_use;
124 mod replace_unwrap_with_match; 124 mod replace_unwrap_with_match;
125 mod split_import; 125 mod split_import;
126 mod add_from_impl_for_enum;
126 127
127 pub(crate) fn all() -> &'static [AssistHandler] { 128 pub(crate) fn all() -> &'static [AssistHandler] {
128 &[ 129 &[
@@ -161,6 +162,7 @@ mod handlers {
161 replace_qualified_name_with_use::replace_qualified_name_with_use, 162 replace_qualified_name_with_use::replace_qualified_name_with_use,
162 replace_unwrap_with_match::replace_unwrap_with_match, 163 replace_unwrap_with_match::replace_unwrap_with_match,
163 split_import::split_import, 164 split_import::split_import,
165 add_from_impl_for_enum::add_from_impl_for_enum,
164 ] 166 ]
165 } 167 }
166} 168}