//! Defines the Weld abstract syntax tree.
//!
//! Most of Weld's optimizations occur over the AST, which doubles as a "High-Level IR." The AST
//! captures the expressions in Weld using a tree data structure.
pub use *;
// Various convinience methods on the AST.
pub use NewExpr;
pub use CompareIgnoringSymbols;
pub use HashIgnoringSymbols;
pub use ;
pub use InferTypes;
pub use Uniquify;