cairo_lang_lowering/
lib.rs

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
27
28
29
//! Cairo lowering.
//!
//! This crate is responsible for handling the lowering phase.
pub mod add_withdraw_gas;
pub mod borrow_check;
pub mod concretize;
pub mod db;
pub mod destructs;
pub mod diagnostic;
pub mod fmt;
pub mod graph_algorithms;
pub mod ids;
pub mod implicits;
pub mod inline;
pub mod lower;
pub mod objects;
pub mod optimizations;
pub mod panic;
pub mod reorganize_blocks;
pub mod scc;
pub mod utils;

#[cfg(test)]
mod test;

pub use self::objects::*;

#[cfg(test)]
pub mod test_utils;