wright/
ast.rs

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