1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! 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 inline;
pub mod lower;
pub mod objects;
pub mod panic;

#[cfg(test)]
mod test;

pub use self::objects::*;

#[cfg(any(feature = "testing", test))]
pub mod test_utils;