summaryrefslogtreecommitdiff
path: root/src/syntax/ast/mod.rs
blob: 0d394e54c5fb12b00cb7335f5cca6e9602ab7aea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! Abstract syntax tree definition.

mod expr;
mod lit;
mod tree;

pub use expr::*;
pub use lit::*;
pub use tree::*;

use super::{Ident, SpanVec, Spanned};