コード例 #1
0
 public void visit(Sub n)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public abstract void visit(Sub n);
コード例 #3
0
 public virtual void visit(Sub n)
 {
     // Do nothing; leave the implementation to the main class
 }
コード例 #4
0
ファイル: X86_64.cs プロジェクト: jverbraeken/Swift-Compiler
 public override void visit(Sub n)
 {
     w("subq\t" + n.Value.accept(this) + ", " + n.Target.accept(this));
 }
コード例 #5
0
 public ASTType visit(Sub n)
 {
     throw new NotImplementedException();
 }