예제 #1
0
 public override object Visit(Visitor that, object value = null)
 {
     return that.Visit(this, value);
 }
예제 #2
0
파일: Node.cs 프로젝트: archfrog/Braceless0
 /** Visits a node without traversing the nodes below it (unless the visitor itself does so). */
 public abstract object Visit(Visitor that, object value = null);