remove empty module

This commit is contained in:
Aleksey Kladov 2019-10-29 15:53:25 +03:00
parent 2a5254c106
commit b8b7969bfb
2 changed files with 6 additions and 15 deletions

View file

@ -35,7 +35,6 @@ pub mod mock;
mod path;
pub mod source_binder;
mod source_id;
mod ids;
mod name;
mod nameres;
@ -60,14 +59,13 @@ pub mod from_source;
#[cfg(test)]
mod marks;
use crate::{
ids::MacroFileKind,
name::AsName,
resolve::Resolver,
source_id::{AstId, FileAstId},
};
use hir_expand::{ast_id_map::FileAstId, AstId};
pub use self::{
use crate::{ids::MacroFileKind, name::AsName, resolve::Resolver};
use hir_expand::ast_id_map::AstIdMap;
pub use crate::{
adt::VariantDef,
either::Either,
expr::ExprScopes,
@ -80,7 +78,6 @@ pub use self::{
path::{Path, PathKind},
resolve::ScopeDef,
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
source_id::AstIdMap,
ty::{
display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk,
},

View file

@ -1,6 +0,0 @@
//! FIXME: write short doc here
pub use hir_expand::{
ast_id_map::{AstIdMap, FileAstId},
AstId,
};