summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
blob: e844fdf1df5e0e3411f43322359a223ab5e29910 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Syntax models, parsing and tokenization.

#[cfg(test)]
#[macro_use]
mod test;

pub mod decoration;
pub mod expr;
pub mod model;
pub mod parsing;
pub mod span;
pub mod scope;
pub mod tokens;
pub mod value;