1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//  MOD.rs
//    by Lut99
//
//  Created:
//    05 Sep 2022, 10:06:47
//  Last edited:
//    12 Dec 2023, 16:34:00
//  Auto updated?
//    Yes
//
//  Description:
//!   Defines the traversals that are part of the compiler.
//

// Declare the modules
pub mod attributes;
pub mod compile;
pub mod data;
pub mod flatten;
pub mod location;
pub mod metadata;
pub mod null;
pub mod offset;
pub mod print;
pub mod prune;
pub mod resolve;
pub mod typing;
pub mod workflow_optimize;
pub mod workflow_resolve;