// // Generated by JTB 1.3.2 // package spiglet.syntaxtree; /** * Grammar production: * f0 -> Temp() * | IntegerLiteral() * | Label() */ public class SimpleExp implements Node { public NodeChoice f0; public SimpleExp(NodeChoice n0) { f0 = n0; } public void accept(spiglet.visitor.Visitor v) { v.visit(this); } public R accept(spiglet.visitor.GJVisitor v, A argu) { return v.visit(this,argu); } public R accept(spiglet.visitor.GJNoArguVisitor v) { return v.visit(this); } public void accept(spiglet.visitor.GJVoidVisitor v, A argu) { v.visit(this,argu); } }