Skip to main content

kyu_binder/
lib.rs

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