1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![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 pretty;

pub mod builder;

pub mod visit;