From ff07e0888ba56a6e723cfb4e9a09f83e2bcf3b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Fri, 15 Jan 2021 15:06:40 +0100 Subject: remove prints --- src/compiler.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/compiler.rs') diff --git a/src/compiler.rs b/src/compiler.rs index dba0174..3a4181b 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -461,7 +461,6 @@ impl Compiler { } } - println!("({:?} -> {:?})", args, return_type); self.scope(&mut function_block); }); @@ -639,7 +638,6 @@ impl Compiler { } }; let f = Type::Function(params, Box::new(return_type)); - println!("Parsed {:?} on line {}", f, self.line()); Ok(f) } Token::Identifier(x) => { -- cgit v1.2.1