2016-03-28 17:42:39 -04:00
|
|
|
//! When in incremental mode, this pass dumps out the dependency graph
|
|
|
|
//! into the given directory. At the same time, it also hashes the
|
|
|
|
//! various HIR nodes.
|
|
|
|
|
|
|
|
mod data;
|
|
|
|
mod dirty_clean;
|
2016-09-26 16:05:01 -04:00
|
|
|
mod file_format;
|
2016-08-11 19:02:39 -04:00
|
|
|
mod fs;
|
2016-03-28 17:42:39 -04:00
|
|
|
mod load;
|
|
|
|
mod save;
|
2016-07-21 12:49:59 -04:00
|
|
|
mod work_product;
|
2016-03-28 17:42:39 -04:00
|
|
|
|
2019-02-08 21:16:35 +09:00
|
|
|
pub use fs::finalize_session_directory;
|
|
|
|
pub use fs::in_incr_comp_dir;
|
|
|
|
pub use fs::in_incr_comp_dir_sess;
|
|
|
|
pub use load::load_query_result_cache;
|
2023-09-20 15:38:18 +02:00
|
|
|
pub use load::setup_dep_graph;
|
2019-02-08 21:16:35 +09:00
|
|
|
pub use load::LoadResult;
|
|
|
|
pub use save::save_dep_graph;
|
|
|
|
pub use save::save_work_product_index;
|
2020-05-12 15:56:02 +10:00
|
|
|
pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;
|