Skip to main content

sqlite3_parser/
lib.rs

1//! SQLite3 syntax lexer and parser
2#![warn(missing_docs)]
3
4pub use bumpalo::{collections::Vec, Bump};
5pub use fallible_iterator::FallibleIterator;
6pub mod dialect;
7// In Lemon, the tokenizer calls the parser.
8pub mod lexer;
9mod parser;
10pub use parser::ast;