forked from Orchid/orchid
- 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
10 lines
193 B
Rust
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;
|