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