2021-11-03 16:35:16 +08:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2021-11-03 16:34:05 +08:00
|
|
|
mod ast_gen;
|
|
|
|
mod constant;
|
|
|
|
#[cfg(feature = "fold")]
|
|
|
|
mod fold_helpers;
|
|
|
|
mod impls;
|
|
|
|
mod location;
|
|
|
|
|
|
|
|
pub use ast_gen::*;
|
|
|
|
pub use location::Location;
|
|
|
|
|
|
|
|
pub type Suite<U = ()> = Vec<Stmt<U>>;
|