chore: remove loose println!

This commit is contained in:
rvcas
2022-11-16 14:49:06 -05:00
parent a27f0562bc
commit ef9fd15e12
6 changed files with 6 additions and 9 deletions

View File

@@ -207,8 +207,6 @@ impl<'a> CodeGenerator<'a> {
interner.program(&mut program);
println!("{}", program.to_pretty());
program
}
@@ -506,7 +504,7 @@ impl<'a> CodeGenerator<'a> {
TypedExpr::Var {
name, constructor, ..
} => (name, constructor.tipo.clone()),
_ => todo!(),
rest => todo!("implement: {:#?}", rest),
};
let mut type_name = "".to_string();