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

mod decoration;
mod span;
mod token;
mod tree;

pub use decoration::*;
pub use span::*;
pub use token::*;
pub use tree::*;