ExpressionType IParsingExpressionVisitor <ExpressionType> .VisitCheckNot(ParsingExpression.CheckNot checkNot)
 {
     return(new ExprCheckNotType()
     {
         Item = checkNot.Child.Apply(this)
     });
 }
示例#2
0
 object IParsingExpressionVisitor <object> .VisitCheckNot(ParsingExpression.CheckNot checkNot)
 {
     // do nothing because this node describes only text checking, not actual parsing
     return(null);
 }