kyu-binder 0.2.0

Semantic analysis and name resolution for KyuGraph Cypher queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! kyu-binder: semantic analysis, name -> ID resolution.

pub mod binder;
pub mod bound_statement;
pub mod expression_binder;
pub mod scope;

pub use binder::Binder;
pub use bound_statement::*;
pub use expression_binder::BindContext;
pub use scope::{BinderScope, VariableInfo};