Skip to content

Commit

Permalink
Removed usefull print
Browse files Browse the repository at this point in the history
  • Loading branch information
L0P0P committed Jul 2, 2024
1 parent 20db05b commit 4d1f44d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ast/nodes/ExprNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ public String codeGeneration() {
public String toPrint(String prefix) {
String str = prefix + "Expr\n";;

System.err.println("ExprNode: " + atom + " " + compOp + " " + exprs + " " + trailers + " " + op);

prefix += " ";
if (atom != null) {
str += atom.toPrint(prefix);
Expand Down

0 comments on commit 4d1f44d

Please # to comment.