ExpressionParser class

Parser to turn strings into Expression

Constructors

ExpressionParser(EvaluatorLookup)

Initializes a new instance of the ExpressionParser class.

Properties

EvaluatorLookup

The delegate to lookup function information from the type.

Methods

parse(string)

Parse the input into an expression.

Constructor Details

ExpressionParser(EvaluatorLookup)

Initializes a new instance of the ExpressionParser class.

new ExpressionParser(lookup?: EvaluatorLookup)

Parameters

lookup
EvaluatorLookup

(xref:adaptive-expressions.EvaluatorLookup) for information from type string.

Property Details

EvaluatorLookup

The delegate to lookup function information from the type.

EvaluatorLookup: EvaluatorLookup

Property Value

Method Details

parse(string)

Parse the input into an expression.

function parse(expression: string): Expression

Parameters

expression

string

Expression to parse.

Returns

Expression tree.