Cleanup imports

This commit is contained in:
Aleksey Kladov 2020-05-19 16:43:26 +02:00
parent 38e8f35855
commit 5c9ebbeaa4

View file

@ -1,5 +1,10 @@
//! An algorithm to find a path to refer to a certain item. //! An algorithm to find a path to refer to a certain item.
use std::sync::Arc;
use hir_expand::name::{known, AsName, Name};
use test_utils::tested_by;
use crate::{ use crate::{
db::DefDatabase, db::DefDatabase,
item_scope::ItemInNs, item_scope::ItemInNs,
@ -7,9 +12,6 @@ use crate::{
visibility::Visibility, visibility::Visibility,
CrateId, ModuleDefId, ModuleId, CrateId, ModuleDefId, ModuleId,
}; };
use hir_expand::name::{known, AsName, Name};
use std::sync::Arc;
use test_utils::tested_by;
const MAX_PATH_LEN: usize = 15; const MAX_PATH_LEN: usize = 15;