1
2
3
4
5
6
7
8
//! SQLite3 syntax lexer and parser
#![warn(missing_docs)]

pub mod dialect;
// In Lemon, the tokenizer calls the parser.
pub mod lexer;
mod parser;
pub use parser::ast;