Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_assists/src/handlers/convert_bool_then.rs')
| -rw-r--r-- | crates/ide_assists/src/handlers/convert_bool_then.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/crates/ide_assists/src/handlers/convert_bool_then.rs b/crates/ide_assists/src/handlers/convert_bool_then.rs index 274718e6ea..daec28999e 100644 --- a/crates/ide_assists/src/handlers/convert_bool_then.rs +++ b/crates/ide_assists/src/handlers/convert_bool_then.rs @@ -1,9 +1,8 @@ use hir::{known, AsAssocItem, Semantics}; use ide_db::{ - helpers::{ - for_each_tail_expr, - node_ext::{block_as_lone_tail, is_pattern_cond, preorder_expr}, - FamousDefs, + famous_defs::FamousDefs, + syntax_helpers::node_ext::{ + block_as_lone_tail, for_each_tail_expr, is_pattern_cond, preorder_expr, }, RootDatabase, }; |