diff options
Diffstat (limited to 'src/ast/nodes/SimpleStmtsNode.java')
-rw-r--r-- | src/ast/nodes/SimpleStmtsNode.java | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/ast/nodes/SimpleStmtsNode.java b/src/ast/nodes/SimpleStmtsNode.java new file mode 100644 index 0000000..c8013a3 --- /dev/null +++ b/src/ast/nodes/SimpleStmtsNode.java @@ -0,0 +1,54 @@ +package com.clp.project.ast.nodes; + +import java.util.ArrayList; + +import com.clp.project.semanticanalysis.SemanticError; +import com.clp.project.semanticanalysis.SymbolTable; +import com.clp.project.ast.types.*; + +/** + * Node for the `simple_stmts` statement of the grammar. + */ +public class SimpleStmtsNode implements Node { + private ArrayList<Node> stmts; + + public SimpleStmtsNode(ArrayList<Node> stmts) { + this.stmts = stmts; + } + + @Override + public ArrayList<SemanticError> checkSemantics(SymbolTable ST, int _nesting) { + ArrayList<SemanticError> errors = new ArrayList<SemanticError>(); + + for (Node stmt : stmts) { + errors.addAll(stmt.checkSemantics(ST, _nesting)); + } + + return errors; + } + + @Override + public Type typeCheck() { + return new VoidType(); + } + + // TODO: Code generation for SimpleStmtsNode + @Override + public String codeGeneration() { + return ""; + } + + @Override + public String toPrint(String prefix) { + String str = prefix + "SimpleStmts\n"; + + prefix += " "; + + for (Node stmt : stmts) { + str += stmt.toPrint(prefix); + } + + return str; + } + +} |