1//! Substitution system for replacing expressions 2//! 3//! Provides recursive tree-walking substitution for Expression types. 4 5mod core; 6mod rewrite; 7 8// Re-export the trait 9pub use self::core::Substitutable;