wright/
ast.rs

1//! [Abstract syntax tree] modeling.
2//!
3//! [Abstract syntax tree]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
4
5pub mod identifier;
6pub mod path;
7// pub mod ty;
8pub mod decl;
9pub mod literal;