1//! kyu-binder: semantic analysis, name -> ID resolution.
23pub mod binder;
4pub mod bound_statement;
5pub mod expression_binder;
6pub mod scope;
78pub use binder::Binder;
9pub use bound_statement::*;
10pub use expression_binder::BindContext;
11pub use scope::{BinderScope, VariableInfo};