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
Afficher le fichier Open project: aarondandy/vertesaur

Méthodes protégées

Méthode Description
ReducibleBinaryExpressionBase ( Expression leftParameter, Expression rightParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

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

Private Methods

Méthode Description
CodeContractInvariant ( ) : void

Method Details

ReducibleBinaryExpressionBase() protected méthode

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.
Résultat System