예제 #1
0
 //selectmany flattens lists of lists.
 public override IList <IExpression> Visit(Nodes.Form node)
 {
     return(node.GetBody()
            .SelectMany(x => x.Accept(this))
            .ToList());
 }
예제 #2
0
 public virtual T Visit(Nodes.Form node)
 {
     throw new NotImplementedException();
 }