C# Class Vertesaur.Generation.Expressions.ConversionExpressionRequest

Creates a new conversion expression request.
Inheritance: IExpressionGenerationRequest
Show file Open project: aarondandy/vertesaur

Public Methods

Method Description
ConversionExpressionRequest ( IExpressionGenerator generator, Expression inputExpression, Type resultType ) : System

Creates a new function expression generation request. This request is for a function that accepts one or more expressions as input.

Private Methods

Method Description
CodeContractInvariants ( ) : void

Method Details

ConversionExpressionRequest() public method

Creates a new function expression generation request. This request is for a function that accepts one or more expressions as input.
public ConversionExpressionRequest ( IExpressionGenerator generator, Expression inputExpression, Type resultType ) : System
generator IExpressionGenerator The primary generator to be used for the generation of sub expressions.
inputExpression System.Linq.Expressions.Expression The name of the requested constant.
resultType System.Type The desired type of the constant.
return System