Files
turso/vendored/sqlite3-parser/src/lib.rs
2024-11-16 20:08:59 +02:00

9 lines
170 B
Rust

//! 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;