Class ParsedExpressionConstructorCall
- Namespace
- LfrlAnvil.Computable.Expressions.Constructs.Variadic
- Assembly
- LfrlAnvil.Computable.Expressions.dll
Represents a constructor call construct.
public sealed class ParsedExpressionConstructorCall : ParsedExpressionVariadicFunction
- Inheritance
-
ParsedExpressionConstructorCall
- Inherited Members
Constructors
ParsedExpressionConstructorCall(ParsedExpressionFactoryInternalConfiguration, bool)
Creates a new ParsedExpressionConstructorCall instance.
public ParsedExpressionConstructorCall(ParsedExpressionFactoryInternalConfiguration configuration, bool foldConstantsWhenPossible = true)
Parameters
configuration
ParsedExpressionFactoryInternalConfigurationUnderlying configuration.
foldConstantsWhenPossible
boolSpecifies whether or not constructor invocations with all parameters being constant should be resolved immediately as constant expression. Equal to true by default.
Properties
FoldConstantsWhenPossible
Specifies whether or not constructor invocations with all parameters being constant should be resolved immediately as constant expression.
public bool FoldConstantsWhenPossible { get; }
Property Value
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.