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

@ -0,0 +1,11 @@
//! `ra_hir_def` contains initial "phases" of the compiler. Roughly, everything
//! before types.
//!
//! Note that we are in the process of moving parts of `ra_hir` into
//! `ra_hir_def`, so this crates doesn't contain a lot at the moment.
pub mod db;
pub mod ast_id_map;
pub mod expand;