Files
RustAst/src/ast/compiler/optimizer/mod.rs
T
Michael Schimmel 81c805f07e Refactor optimizer utilities
Removes unused `flatten_tuple` function from optimizer utilities. The
functionality was moved to the `Folder` struct, making it more
contextually appropriate. This change streamlines the utility module and
improves code organization.
2026-02-25 21:26:12 +01:00

12 lines
263 B
Rust

pub mod engine;
pub mod folder;
pub mod inliner;
pub mod substitution_map;
pub mod utils;
pub use engine::Optimizer;
pub use folder::Folder;
pub use inliner::Inliner;
pub use substitution_map::SubstitutionMap;
pub use utils::{PathTracker, UsageInfo};