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