1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Various [AST] (abstract syntax tree) constructs used in Wright. //! //! [AST]: https://en.wikipedia.org/wiki/Abstract_syntax_tree pub mod declaration; pub mod expression; pub mod identifier; pub mod metadata; pub mod path; pub mod statement; pub mod types; /// Trait implementd pub trait AstNode<'src> {}