package ast.nodes; import ast.types.*; import java.util.ArrayList; import semanticanalysis.SemanticError; import semanticanalysis.SymbolTable; /** * Node for the `compound_node` statement of the grammar. */ public class CompoundNode implements Node { private final Node ifNode; private final Node funcDef; private final Node forStmt; private final Node whileStmt; public CompoundNode(Node ifNode, Node funcDef, Node forStmt, Node whileStmt) { this.ifNode = ifNode; this.funcDef = funcDef; this.forStmt = forStmt; this.whileStmt = whileStmt; } @Override public ArrayList checkSemantics(SymbolTable ST, int _nesting) { ArrayList errors = new ArrayList<>(); if (ifNode != null) { errors.addAll(ifNode.checkSemantics(ST, _nesting)); } if (funcDef != null) { errors.addAll(funcDef.checkSemantics(ST, _nesting)); } if (forStmt != null) { errors.addAll(forStmt.checkSemantics(ST, _nesting)); } if (whileStmt != null) { errors.addAll(whileStmt.checkSemantics(ST, _nesting)); } return errors; } @Override public Type typeCheck() { return new VoidType(); } // TODO: add code generation for CompoundNode @Override public String codeGeneration() { return ""; } @Override public String toPrint(String prefix) { String str = prefix + "CompoundNode\n"; prefix += " "; if (ifNode != null) { str += ifNode.toPrint(prefix); } if (funcDef != null) { str += funcDef.toPrint(prefix); } if (forStmt != null) { str += forStmt.toPrint(prefix); } if (whileStmt != null) { str += whileStmt.toPrint(prefix); } return str; } }