sqlite3_parser/
lib.rs

1//! SQLite3 syntax lexer and parser
2#![warn(missing_docs)]
3
4pub mod dialect;
5// In Lemon, the tokenizer calls the parser.
6pub mod lexer;
7mod parser;
8pub use parser::ast;