package ast.nodes; import ast.types.*; import java.util.ArrayList; import java.util.HashMap; import semanticanalysis.*; /** * Node for the `root` statement of the grammar. */ public class RootNode implements Node { // stms and compundStmts are protected because they are reused for a // BlockNode protected ArrayList stmts; protected ArrayList compoundStmts; public RootNode(ArrayList stmts, ArrayList compoundStmts) { this.stmts = stmts; this.compoundStmts = compoundStmts; } @Override public ArrayList checkSemantics(SymbolTable ST, int _nesting) { ArrayList errors = new ArrayList(); HashMap HM = new HashMap(); ST.add(HM); for (Node stmt : stmts) { errors.addAll(stmt.checkSemantics(ST, _nesting)); } for (Node stmt : compoundStmts) { errors.addAll(stmt.checkSemantics(ST, _nesting)); } ST.remove(); return errors; } @Override public Type typeCheck() { return new VoidType(); } // TODO: Code generation for RootNode @Override public String codeGeneration() { return ""; } @Override public String toPrint(String prefix) { String str = "Root\n"; prefix += " "; for (Node stmt : stmts) { str += stmt.toPrint(prefix); } for (Node stmt : compoundStmts) { str += stmt.toPrint(prefix); } return str; } }