2024-04-19 08:21:07 +00:00
|
|
|
//! Desugaring passes for Conlang
|
|
|
|
|
2024-04-29 21:25:30 +00:00
|
|
|
pub mod path_absoluter;
|
|
|
|
pub mod squash_groups;
|
2024-04-19 08:21:07 +00:00
|
|
|
pub mod while_else;
|
|
|
|
|
2024-04-29 21:25:30 +00:00
|
|
|
pub use path_absoluter::NormalizePaths;
|
|
|
|
pub use squash_groups::SquashGroups;
|
|
|
|
pub use while_else::WhileElseDesugar;
|