Files
orchid/src/pipeline/mod.rs
Lawrence Bethlenfalvy 3fdabc29da Most files suffered major changes
- Less ambiguous syntax
- Better parser (Chumsky only does tokenization now)
- Tidy(|ier) error handling
- Facade for simplified embedding
- External code grouped in (fairly) self-contained Systems
- Dynamic action dispatch
- Many STL additions
2023-08-18 12:57:41 +01:00

10 lines
193 B
Rust

//! Loading Orchid modules from source
pub mod file_loader;
mod import_abs_path;
mod import_resolution;
mod parse_layer;
mod project_tree;
mod source_loader;
pub use parse_layer::parse_layer;