Backup commit

My backspace key started ghosting. Nothing works atm.
This commit is contained in:
2024-01-27 14:50:33 +00:00
parent f77e4fd90a
commit a8887227e5
236 changed files with 10946 additions and 8977 deletions

View File

@@ -10,27 +10,15 @@
pub mod error;
pub mod facade;
pub mod foreign;
pub mod interner;
pub mod gen;
pub mod intermediate;
pub mod interpreter;
pub mod libs;
pub mod location;
pub mod name;
pub mod parse;
pub mod pipeline;
mod representations;
pub mod rule;
pub mod systems;
mod utils;
pub use interner::{Interner, Tok};
pub use pipeline::file_loader::{mk_dir_cache, mk_embed_cache};
pub use pipeline::parse_layer;
/// Element of VName and a common occurrence in the API
pub type Stok = Tok<String>;
pub use representations::ast_to_interpreted::ast_to_interpreted;
pub use representations::project::{
collect_consts, collect_rules, vname_to_sym_tree, ProjectTree,
};
pub use representations::{
ast, from_const_tree, interpreted, sourcefile, tree, ConstTree, Location,
NameLike, OrcString, PathSet, Sym, VName,
};
pub use utils::substack::Substack;
pub use utils::{ddispatch, take_with_output, thread_pool, IdMap, Side};
pub mod tree;
pub mod utils;
pub mod virt_fs;