aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2021-01-15 15:06:40 +0100
committerGustav Sörnäs <gustav@sornas.net>2021-01-15 16:58:08 +0100
commitff07e0888ba56a6e723cfb4e9a09f83e2bcf3b2b (patch)
tree459e118cf855739e97727a77f8ed523e8f38296b
parent48490ca1e33429f3d2f81aac62c1819f6d2a6406 (diff)
downloadsylt-ff07e0888ba56a6e723cfb4e9a09f83e2bcf3b2b.tar.gz
remove prints
-rw-r--r--src/compiler.rs2
1 files changed, 0 insertions, 2 deletions
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) => {