Cleanup imports

This commit is contained in:
Aleksey Kladov 2019-11-24 14:02:08 +03:00
parent cfffea6dc8
commit f11237561c
8 changed files with 20 additions and 27 deletions

View file

@ -58,7 +58,6 @@ pub use crate::{
},
expr::ExprScopes,
from_source::FromSource,
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
ty::{
display::HirDisplay,
@ -73,4 +72,6 @@ pub use hir_def::{
path::{Path, PathKind},
type_ref::Mutability,
};
pub use hir_expand::{either::Either, name::Name, Source};
pub use hir_expand::{
either::Either, name::Name, HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile, Source,
};