1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//! Cairo lowering.
//!
//! This crate is responsible for handling the lowering phase.
pub mod borrow_check;
pub mod concretize;
pub mod db;
pub mod diagnostic;
pub mod fmt;
pub mod graph_algorithms;
pub mod implicits;
pub mod inline;
pub mod lower;
pub mod objects;
pub mod optimizations;
pub mod panic;
pub mod scc;
pub mod topological_sort;
pub mod utils;
#[cfg(test)]
mod test;
pub use self::objects::*;
#[cfg(any(feature = "testing", test))]
pub mod test_utils;