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 260ada716..b8704ea7d 100644
--- a/crates/ra_assists/src/lib.rs
+++ b/crates/ra_assists/src/lib.rs
@@ -110,6 +110,7 @@ mod handlers {
110 mod inline_local_variable; 110 mod inline_local_variable;
111 mod introduce_variable; 111 mod introduce_variable;
112 mod invert_if; 112 mod invert_if;
113 mod merge_imports;
113 mod merge_match_arms; 114 mod merge_match_arms;
114 mod move_bounds; 115 mod move_bounds;
115 mod move_guard; 116 mod move_guard;
@@ -140,6 +141,7 @@ mod handlers {
140 inline_local_variable::inline_local_variable, 141 inline_local_variable::inline_local_variable,
141 introduce_variable::introduce_variable, 142 introduce_variable::introduce_variable,
142 invert_if::invert_if, 143 invert_if::invert_if,
144 merge_imports::merge_imports,
143 merge_match_arms::merge_match_arms, 145 merge_match_arms::merge_match_arms,
144 move_bounds::move_bounds_to_where_clause, 146 move_bounds::move_bounds_to_where_clause,
145 move_guard::move_arm_cond_to_match_guard, 147 move_guard::move_arm_cond_to_match_guard,