1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Cairo lowering.
//!
//! This crate is responsible for handling the lowering phase.
pub mod db;
pub mod diagnostic;
pub mod fmt;
pub mod lower;
pub mod objects;
#[cfg(test)]
mod test;
pub use self::objects::*;
#[cfg(any(feature = "testing", test))]
pub mod test_utils;