aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEdvard Thörnros <edvard.thornros@gmail.com>2021-01-30 16:05:58 +0100
committerEdvard Thörnros <edvard.thornros@gmail.com>2021-01-30 16:05:58 +0100
commit03977fdf0d09156dbee222194d0800b4ba8dde8b (patch)
tree55ab9606b6ac0f59349e3977eb05a354c12de885 /src
parent5d0227cae312498f0e9882b56d8e9d52fa8fa19c (diff)
downloadsylt-03977fdf0d09156dbee222194d0800b4ba8dde8b.tar.gz
remove start/end compilation markers
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(),