C# Class Vertesaur.Generation.Expressions.ReducibleBinaryExpressionBase

An expression that can be reduced to a compilable expression and which also takes two expressions as input.
Inheritance: ReducibleExpressionBase
Show file Open project: aarondandy/vertesaur

Protected Methods

Method Description
ReducibleBinaryExpressionBase ( Expression leftParameter, Expression rightParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

Creates a new reducible expression with the given left and right parameters.

Private Methods

Method Description
CodeContractInvariant ( ) : void

Method Details

ReducibleBinaryExpressionBase() protected method

Creates a new reducible expression with the given left and right parameters.
protected ReducibleBinaryExpressionBase ( Expression leftParameter, Expression rightParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System
leftParameter System.Linq.Expressions.Expression The first or left parameter.
rightParameter System.Linq.Expressions.Expression The second or right parameter.
reductionExpressionGenerator IExpressionGenerator The optional expression generator used for reduction.
return System