summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
blob: 8b716da4c79e44bf196a5d564998316338378143 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//! Syntax types.

pub mod ast;
pub mod token;

mod ident;
mod span;

pub use ast::*;
pub use ident::*;
pub use span::*;
pub use token::*;