From 03977fdf0d09156dbee222194d0800b4ba8dde8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edvard=20Th=C3=B6rnros?= Date: Sat, 30 Jan 2021 16:05:58 +0100 Subject: remove start/end compilation markers --- src/compiler.rs | 2 -- 1 file changed, 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> { - 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(), -- cgit v1.2.1