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