cl_ast/
desugar.rs

1//! Desugaring passes for Conlang
2
3pub mod constant_folder;
4pub mod path_absoluter;
5pub mod squash_groups;
6pub mod while_else;
7
8pub use constant_folder::ConstantFolder;
9pub use path_absoluter::NormalizePaths;
10pub use squash_groups::SquashGroups;
11pub use while_else::WhileElseDesugar;