Cleanup ide_db imports

This commit is contained in:
Lukas Wirth 2021-03-27 21:51:00 +01:00
parent 77a447dcda
commit 1ef55002c2
8 changed files with 15 additions and 10 deletions

View file

@ -1,7 +1,6 @@
//! Handle syntactic aspects of inserting a new `use`.
use std::{cmp::Ordering, iter::successors};
use crate::RootDatabase;
use hir::Semantics;
use itertools::{EitherOrBoth, Itertools};
use syntax::{
@ -14,6 +13,8 @@ use syntax::{
AstToken, InsertPosition, NodeOrToken, SyntaxElement, SyntaxNode, SyntaxToken,
};
use crate::RootDatabase;
pub use hir::PrefixKind;
#[derive(Clone, Copy, Debug, PartialEq, Eq)]