package name.panitz.fun4u.tree;
import name.panitz.fun4u.visitor.Visitor;


public class OpExp extends Exp {
	public Exp left;
	public String name;
	public Exp right;
	public OpExp(Exp left, String name, Exp right) {
		super();
		this.left = left;
		this.name = name;
		this.right = right;
	}
	@Override
	public
	void welcome(Visitor v) {
		v.visit(this);
	}

}
