Table of Contents

Class ParsedExpressionMethodCall

Namespace
LfrlAnvil.Computable.Expressions.Constructs.Variadic
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents a method call construct.

public sealed class ParsedExpressionMethodCall : ParsedExpressionVariadicFunction
Inheritance
ParsedExpressionMethodCall
Inherited Members

Constructors

ParsedExpressionMethodCall(ParsedExpressionFactoryInternalConfiguration, bool)

Creates a new ParsedExpressionMethodCall instance.

public ParsedExpressionMethodCall(ParsedExpressionFactoryInternalConfiguration configuration, bool foldConstantsWhenPossible = true)

Parameters

configuration ParsedExpressionFactoryInternalConfiguration

Underlying configuration.

foldConstantsWhenPossible bool

Specifies whether or not method invocations with all parameters being constant and target being constant should be resolved immediately as constant expression. Equal to true by default.

Properties

FoldConstantsWhenPossible

Specifies whether or not method invocations with all parameters being constant and target being constant should be resolved immediately as constant expression.

public bool FoldConstantsWhenPossible { get; }

Property Value

bool

Methods

Process(IReadOnlyList<Expression>)

Processes this construct.

[Pure]
protected override Expression Process(IReadOnlyList<Expression> parameters)

Parameters

parameters IReadOnlyList<Expression>

Parameters to process.

Returns

Expression

New Expression.