blob: 1de5c1dd9af572ad6077d5bcc68e20cc9fc9bd45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//! Syntax types.
mod expr;
mod ident;
mod node;
mod span;
mod token;
pub mod visit;
pub use expr::*;
pub use ident::*;
pub use node::*;
pub use span::*;
pub use token::*;
use crate::eco::EcoString;
/// The abstract syntax tree.
///
/// This type can represent a full parsed document.
pub type SyntaxTree = Vec<Node>;
|