1
2
3
4
5
6
7
8
9
10
11
#![deny(rust_2018_idioms)]
#![deny(clippy::all)]

//! The `PartiQL` Abstract Syntax Tree (AST).
//!
//! # Note
//!
//! This API is currently unstable and subject to change.

pub mod ast;
pub mod visit;