2019-10-29 11:15:51 +03:00
|
|
|
//! `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.
|
|
|
|
|
|
2019-10-29 14:55:39 +03:00
|
|
|
pub mod db;
|
|
|
|
|
|
2019-10-29 11:15:51 +03:00
|
|
|
pub mod ast_id_map;
|
2019-10-29 14:55:39 +03:00
|
|
|
|
|
|
|
|
pub mod expand;
|