diff options
author | Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> | 2024-07-06 09:47:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 09:47:25 +0200 |
commit | f0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc (patch) | |
tree | 36518af3f04a751ba5bb8158c3f005cfa3e8c7c3 /src/ast/nodes/ExprNode.java | |
parent | 8aa8b5834953cab15c0687608f4fafea2e6c61be (diff) |
Fixed the print of the ast and some warnings (#19)
Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Diffstat (limited to 'src/ast/nodes/ExprNode.java')
-rw-r--r-- | src/ast/nodes/ExprNode.java | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/ast/nodes/ExprNode.java b/src/ast/nodes/ExprNode.java index 873d537..693176a 100644 --- a/src/ast/nodes/ExprNode.java +++ b/src/ast/nodes/ExprNode.java @@ -52,7 +52,7 @@ public class ExprNode implements Node { @Override public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) { - ArrayList<SemanticError> errors = new ArrayList(); + ArrayList<SemanticError> errors = new ArrayList<>(); // check if the atom is a function if (atom != null && !trailers.isEmpty()) { @@ -130,19 +130,22 @@ public class ExprNode implements Node { if (atom != null) { str += atom.toPrint(prefix); } - if (compOp != null) { str += compOp.toPrint(prefix); } - - for (var expr : exprs) { - str = expr.toPrint(prefix); - } - - for (var trailer : trailers) { - str = trailer.toPrint(prefix); + + if (exprs != null) { + for (var expr : exprs) { + str += expr.toPrint(prefix); + } } - + + if (trailers != null) { + for (var trailer : trailers) { + str += trailer.toPrint(prefix); + } + } + if (op != null) { str += prefix + "Op(" + op + ")\n"; } |