Ejemplo n.º 1
0
 ExpressionType IParsingExpressionVisitor <ExpressionType> .VisitCheck(ParsingExpression.Check check)
 {
     return(new ExprCheckType()
     {
         Item = check.Child.Apply(this)
     });
 }
Ejemplo n.º 2
0
 object IParsingExpressionVisitor <object> .VisitCheck(ParsingExpression.Check check)
 {
     // do nothing because this node describes only text checking, not actual parsing
     return(null);
 }