Skip to main content

kyu_parser/parser/
mod.rs

1//! Chumsky combinator parsers for the Cypher query language.
2//!
3//! Operates on the token stream produced by the lexer.
4//! Uses chumsky 0.9 with `Simple<Token>` errors.
5
6pub mod clause;
7pub mod ddl;
8pub mod expression;
9pub mod pattern;
10pub mod statement;