aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compiler.rs b/src/compiler.rs
index 559068d..648989d 100644
--- a/src/compiler.rs
+++ b/src/compiler.rs
@@ -1043,7 +1043,6 @@ impl Compiler {
}
pub fn compile(&mut self, name: &str, file: &Path, functions: &[(String, RustFunction)]) -> Result<Prog, Vec<Error>> {
- println!("=== START COMPILATION ===");
self.functions = functions
.to_vec()
.into_iter()
@@ -1073,7 +1072,6 @@ impl Compiler {
self.blocks.insert(0, Rc::new(RefCell::new(block)));
- println!("=== END COMPILATION ===");
if self.errors.is_empty() {
Ok(Prog {
blocks: self.blocks.clone(),