mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
9 lines
170 B
Rust
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;
|