Exemplo n.º 1
0
 public PathStep(object nodeTest, XPath2ExprType type)
 {
     this.nodeTest = nodeTest;
     this.type     = type;
     node          = null;
 }
Exemplo n.º 2
0
 public PathStep(XPath2ExprType type)
     : this(null, type)
 {
 }
Exemplo n.º 3
0
 public PathStep(AbstractNode node)
 {
     nodeTest  = null;
     type      = XPath2ExprType.Expr;
     this.node = node;
 }