brane_ast/traversals/print/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//  MOD.rs
//    by Lut99
//
//  Created:
//    18 Aug 2022, 13:45:22
//  Last edited:
//    05 Sep 2022, 11:09:41
//  Auto updated?
//    Yes
//
//  Description:
//!   Prints either the `brane-dsl` AST or the `brane-ast` AST in
//!   BraneScript-like syntax.
//

// Declare the modules
pub mod ast;
pub mod ast_unresolved;
pub mod dsl;
pub mod symbol_tables;