Files
turso/vendored/sqlite3-parser/src/lib.rs
2025-06-04 12:06:42 -03:00

10 lines
193 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;
pub mod to_sql_string;