summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 2108252..a3f2872 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,21 +2,15 @@
#![feature(io_error_more)]
#![feature(map_try_insert)]
-
-mod gather_libraries;
-mod symbol_resolver;
-
-pub use gather_libraries::*;
-pub use symbol_resolver::*;
-
+mod compiler;
mod tokens;
mod translators;
+mod print;
+pub use compiler::*;
pub use tokens::*;
pub use translators::*;
-
-mod print;
pub use print::*;
-
pub use assembler::*;
+