removed debug lines

This commit is contained in:
Simon Kellet 2023-10-31 18:37:11 +00:00
parent b6f5eaa3c8
commit 873bf218f8
2 changed files with 0 additions and 2 deletions

View File

@ -611,7 +611,6 @@ public class ConstantFolder implements ActualParameterVisitor<Void, AbstractSynt
Identifier ti = new Identifier(foldedValue.toString(), node1.getPosition()); Identifier ti = new Identifier(foldedValue.toString(), node1.getPosition());
if (ti.spelling == "true") { if (ti.spelling == "true") {
System.out.println("True Decl thingy");
ti.decl = StdEnvironment.trueDecl; ti.decl = StdEnvironment.trueDecl;
SimpleVname sti = new SimpleVname(ti, node1.getPosition()); SimpleVname sti = new SimpleVname(ti, node1.getPosition());
VnameExpression esti = new VnameExpression(sti, node1.getPosition()); VnameExpression esti = new VnameExpression(sti, node1.getPosition());
@ -619,7 +618,6 @@ public class ConstantFolder implements ActualParameterVisitor<Void, AbstractSynt
return esti; return esti;
} else if (ti.spelling == "false") { } else if (ti.spelling == "false") {
System.out.println("False Decl thingy");
ti.decl = StdEnvironment.falseDecl; ti.decl = StdEnvironment.falseDecl;
SimpleVname sti = new SimpleVname(ti, node1.getPosition()); SimpleVname sti = new SimpleVname(ti, node1.getPosition());
VnameExpression esti = new VnameExpression(sti, node1.getPosition()); VnameExpression esti = new VnameExpression(sti, node1.getPosition());

Binary file not shown.