refactor rox_compiler into module

This commit is contained in:
2024-07-01 11:18:34 -07:00
parent 64ac70f946
commit a6ae26a93e
8 changed files with 991 additions and 847 deletions

9
rox_compiler/src/lib.rs Normal file

@ -0,0 +1,9 @@
mod common;
mod compile;
mod decompile;
//export minimal interface
pub use common::Style;
pub use compile::CompileConfig;
pub use compile::compile;//cringe unstandardized interface
pub use decompile::WriteConfig;
pub use decompile::DecompiledContext;