From ce49d20a5fe3726e1800bc495a25c7617212abf4 Mon Sep 17 00:00:00 2001 From: Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> Date: Sun, 14 Jul 2024 18:48:09 +0200 Subject: Reaching definition analysis (#17) Co-authored-by: Santo Cariotti Co-authored-by: geno Co-authored-by: geno --- src/ast/nodes/CompoundNode.java | 42 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) (limited to 'src/ast/nodes/CompoundNode.java') diff --git a/src/ast/nodes/CompoundNode.java b/src/ast/nodes/CompoundNode.java index f0f63f2..ad3420d 100644 --- a/src/ast/nodes/CompoundNode.java +++ b/src/ast/nodes/CompoundNode.java @@ -22,6 +22,7 @@ public class CompoundNode implements Node { this.whileStmt = whileStmt; } + @Override public ArrayList checkSemantics(SymbolTable ST, int _nesting, FunctionType ft) { ArrayList errors = new ArrayList<>(); @@ -72,11 +73,34 @@ public class CompoundNode implements Node { } @Override - public String toPrint(String prefix) { + public String printAST(String prefix) { String str = prefix + "CompoundNode\n"; prefix += " "; + if (ifNode != null) { + str += ifNode.printAST(prefix); + } + + if (funcDef != null) { + str += funcDef.printAST(prefix); + } + + if (forStmt != null) { + str += forStmt.printAST(prefix); + } + + if (whileStmt != null) { + str += whileStmt.printAST(prefix); + } + + return str; + } + + @Override + public String toPrint(String prefix) { + String str = ""; + if (ifNode != null) { str += ifNode.toPrint(prefix); } @@ -94,6 +118,22 @@ public class CompoundNode implements Node { } return str; + } + public Node getForStmt() { + return forStmt; + } + + public Node getFuncDef() { + return funcDef; + } + + public Node getIfNode() { + return ifNode; + } + + public Node getWhileStmt() { + return whileStmt; + } } -- cgit v1.2.3-18-g5258