XSpect.Yacq.Expressions.YacqExpression.Reduce C# (CSharp) Method

Reduce() public method

Reduces this node to a simpler expression. If CanReduce returns true, this should return a valid expression. This method can return another node which itself must be reduced.
public Reduce ( ) : Expression
return System.Linq.Expressions.Expression
        public override Expression Reduce()
        {
            return this.Reduce(null);
        }

Same methods

YacqExpression::Reduce ( SymbolTable symbols, Type expectedType = null ) : Expression