XSpect.Yacq.Expressions.YacqExpression.Reduce C# (CSharp) 메소드

Reduce() 공개 메소드

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
리턴 System.Linq.Expressions.Expression
        public override Expression Reduce()
        {
            return this.Reduce(null);
        }

Same methods

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