Skip to main content

sqlite3_parser/
lib.rs

1//! SQLite3 syntax lexer and parser
2#![warn(missing_docs)]
3//#![warn(clippy::large_stack_frames)] doesn't take into account opt-level / --release flag
4
5pub mod dialect;
6// In Lemon, the tokenizer calls the parser.
7pub mod lexer;
8mod parser;
9pub use parser::ast;