blob: 970cd28384c5c409f390853cd6d755e3bb4bbd2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! Syntax types.
mod expr;
mod ident;
mod node;
mod span;
mod token;
pub use expr::*;
pub use ident::*;
pub use node::*;
pub use span::*;
pub use token::*;
/// A collection of nodes which form a tree together with the nodes' children.
pub type SynTree = SpanVec<SynNode>;
|