Class CallExpression
public sealed record CallExpression : Expression, IEquatable<Expression>, IEquatable<CallExpression>
- Inheritance
-
CallExpression
- Implements
- Inherited Members
Constructors
CallExpression(string, IReadOnlyList<Expression>, SandboxType?, SourceSpan)
public CallExpression(string Name, IReadOnlyList<Expression> Arguments, SandboxType? GenericType, SourceSpan Span)
Parameters
NamestringArgumentsIReadOnlyList<Expression>GenericTypeSandboxTypeSpanSourceSpan
Properties
Arguments
public IReadOnlyList<Expression> Arguments { get; init; }
Property Value
GenericType
public SandboxType? GenericType { get; init; }
Property Value
Name
public string Name { get; init; }