cl-ast/desugar: Turn all paths into absolute paths

This commit is contained in:
2024-04-29 16:25:30 -05:00
parent db0b791b24
commit 6aea23c8ba
3 changed files with 63 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
//! Desugaring passes for Conlang
pub mod path_absoluter;
pub mod squash_groups;
pub mod while_else;
pub mod squash_groups;
pub use path_absoluter::NormalizePaths;
pub use squash_groups::SquashGroups;
pub use while_else::WhileElseDesugar;