aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_expand/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-10-29 11:59:55 +0000
committerAleksey Kladov <[email protected]>2019-10-29 11:59:55 +0000
commit5b803055b7b690a57f1c08da8f1640139c739e76 (patch)
treefe8929d0715040bb9200974b88e25f57596a5813 /crates/ra_hir_expand/src/lib.rs
parent541387564483ee3a42a1969fd048f94e57599ca4 (diff)
rename hir_def -> hir_expand
Diffstat (limited to 'crates/ra_hir_expand/src/lib.rs')
-rw-r--r--crates/ra_hir_expand/src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/crates/ra_hir_expand/src/lib.rs b/crates/ra_hir_expand/src/lib.rs
new file mode 100644
index 000000000..6ccb11068
--- /dev/null
+++ b/crates/ra_hir_expand/src/lib.rs
@@ -0,0 +1,11 @@
1//! `ra_hir_def` contains initial "phases" of the compiler. Roughly, everything
2//! before types.
3//!
4//! Note that we are in the process of moving parts of `ra_hir` into
5//! `ra_hir_def`, so this crates doesn't contain a lot at the moment.
6
7pub mod db;
8
9pub mod ast_id_map;
10
11pub mod expand;