rename hir_def -> hir_expand

This commit is contained in:
Aleksey Kladov 2019-10-29 14:59:55 +03:00
parent 5413875644
commit 5b803055b7
10 changed files with 7 additions and 7 deletions

View file

@ -23,7 +23,7 @@ use crate::{
Static, Struct, StructField, Trait, TypeAlias,
};
pub use hir_def::db::{
pub use hir_expand::db::{
AstDatabase, AstDatabaseStorage, AstIdMapQuery, MacroArgQuery, MacroDefQuery, MacroExpandQuery,
ParseMacroQuery,
};

View file

@ -15,7 +15,7 @@ use crate::{
AstId, FileAstId, Module, Source,
};
pub use hir_def::expand::{
pub use hir_expand::expand::{
HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile, MacroFileKind,
};

View file

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