From 5b803055b7b690a57f1c08da8f1640139c739e76 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 29 Oct 2019 14:59:55 +0300 Subject: rename hir_def -> hir_expand --- crates/ra_hir_expand/src/lib.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 crates/ra_hir_expand/src/lib.rs (limited to 'crates/ra_hir_expand/src/lib.rs') 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 @@ +//! `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; -- cgit v1.2.3