Exemple #1
0
 public override void Visit(CollectOp op, Node n)
 {
     using (new AutoXml(this, op))
     {
         VisitChildren(n);
     }
 }
Exemple #2
0
 // <summary>
 // Copies a CollectOp
 // </summary>
 // <param name="op"> The Op to Copy </param>
 // <param name="n"> The Node that references the Op </param>
 // <returns> A copy of the original Node that references a copy of the original Op </returns>
 public override Node Visit(CollectOp op, Node n)
 {
     return(CopyDefault(m_destCmd.CreateCollectOp(op.Type), n));
 }
 public override void Visit(CollectOp op, Node n)
 {
     using (new Dump.AutoXml(this, (Op)op))
         this.VisitChildren(n);
 }
 public virtual void Visit(CollectOp op, Node n)
 {
     this.VisitScalarOpDefault((ScalarOp)op, n);
 }
Exemple #5
0
 public override void Visit(CollectOp op, Node n)
 {
     VisitScalarOpDefault(op, n);
     AssertOpType(n.Child0.Op, OpType.PhysicalProject);
     AssertCollectionType(op.Type);
 }
Exemple #6
0
 /// <summary>
 ///     Visitor pattern method for NestOp
 /// </summary>
 /// <param name="op"> The NestOp being visited </param>
 /// <param name="n"> The Node that references the Op </param>
 public virtual void Visit(CollectOp op, Node n)
 {
     VisitScalarOpDefault(op, n);
 }
Exemple #7
0
 // <summary>
 // NestOp
 // </summary>
 public virtual TResultType Visit(CollectOp op, Node n)
 {
     return(VisitScalarOpDefault(op, n));
 }