desugar: Add primitive constant folding

This commit is contained in:
2025-05-05 04:18:16 -04:00
parent cd2e3c3e32
commit 2d706ff582
3 changed files with 94 additions and 0 deletions

View File

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