
abstract public class ExpressionVisitor {

  abstract void visitIntExp(IntExp e);
  abstract void visitAddExp(AddExp e);

}
