2 instantiations of UnionExpr
System.Private.Xml (2)
System\Xml\XPath\Internal\QueryBuilder.cs (1)
334return new UnionExpr(op1, op2);
System\Xml\XPath\Internal\UnionExpr.cs (1)
158public override XPathNodeIterator Clone() { return new UnionExpr(this); }
4 references to UnionExpr
System.Private.Xml (4)
System\Xml\XPath\Internal\UnionExpr.cs (1)
25private UnionExpr(UnionExpr other) : base(other)
System\Xml\Xsl\XsltOld\TemplateAction.cs (3)
136UnionExpr? union; 137while ((union = query as UnionExpr) != null) 139Debug.Assert(!(union.qy2 is UnionExpr), "only qy1 can be union");