public abstract void visit(Mult n);
Example #2
0
 public void visit(Mult n)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public override void visit(Mult n)
 {
     w("addq\t" + n.Value.accept(this) + ", " + n.Target.accept(this));
 }