package ast.nodes; import java.util.ArrayList; import semanticanalysis.SemanticError; import semanticanalysis.SymbolTable; import ast.types.*; /** * Node for the `atom` statement of the grammar. */ public class AtomNode implements Node { protected String val; public AtomNode(String val) { this.val = val; } @Override public ArrayList checkSemantics(SymbolTable ST, int _nesting) { return new ArrayList(); } // FIXME: this type for atom @Override public Type typeCheck() { return new AtomType(); } // TODO: add code generation for atom node @Override public String codeGeneration() { return ""; } @Override public String toPrint(String prefix) { if (val != null) { return prefix + "Atom(" + val + ")\n"; } return prefix + "Atom(null)\n"; } }