diff options
author | Aleksey Kladov <[email protected]> | 2020-08-25 17:07:25 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-25 17:07:25 +0100 |
commit | 4f6ca0e081b825031921d10fba3554c119ff29a0 (patch) | |
tree | d788985ca64f5351b9c60cac8fbfa6919d095b4a /crates/assists | |
parent | 7239d8ca951593b66a557c989dffaf94edddf420 (diff) |
Minor
Diffstat (limited to 'crates/assists')
-rw-r--r-- | crates/assists/src/handlers/extract_struct_from_enum_variant.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/assists/src/handlers/extract_struct_from_enum_variant.rs b/crates/assists/src/handlers/extract_struct_from_enum_variant.rs index c1124b9e2..8ac20210a 100644 --- a/crates/assists/src/handlers/extract_struct_from_enum_variant.rs +++ b/crates/assists/src/handlers/extract_struct_from_enum_variant.rs | |||
@@ -1,6 +1,7 @@ | |||
1 | use base_db::FileId; | 1 | use base_db::FileId; |
2 | use hir::{EnumVariant, Module, ModuleDef, Name}; | 2 | use hir::{EnumVariant, Module, ModuleDef, Name}; |
3 | use ide_db::{defs::Definition, search::Reference, RootDatabase}; | 3 | use ide_db::{defs::Definition, search::Reference, RootDatabase}; |
4 | use itertools::Itertools; | ||
4 | use rustc_hash::FxHashSet; | 5 | use rustc_hash::FxHashSet; |
5 | use syntax::{ | 6 | use syntax::{ |
6 | algo::find_node_at_offset, | 7 | algo::find_node_at_offset, |
@@ -203,13 +204,11 @@ fn list_with_visibility(list: &str) -> String { | |||
203 | mod_part.insert_str(index, "pub "); | 204 | mod_part.insert_str(index, "pub "); |
204 | mod_part | 205 | mod_part |
205 | }) | 206 | }) |
206 | .collect::<Vec<String>>() | ||
207 | .join(", ") | 207 | .join(", ") |
208 | } | 208 | } |
209 | 209 | ||
210 | #[cfg(test)] | 210 | #[cfg(test)] |
211 | mod tests { | 211 | mod tests { |
212 | |||
213 | use crate::{ | 212 | use crate::{ |
214 | tests::{check_assist, check_assist_not_applicable}, | 213 | tests::{check_assist, check_assist_not_applicable}, |
215 | utils::FamousDefs, | 214 | utils::FamousDefs, |