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