Table of Contents

Class BinaryExpression

Namespace
DotBoxD.Kernels
Assembly
DotBoxD.Kernels.dll
public sealed record BinaryExpression : Expression, IEquatable<Expression>, IEquatable<BinaryExpression>
Inheritance
BinaryExpression
Implements
Inherited Members

Constructors

BinaryExpression(Expression, string, Expression, SourceSpan)

public BinaryExpression(Expression Left, string Operator, Expression Right, SourceSpan Span)

Parameters

Left Expression
Operator string
Right Expression
Span SourceSpan

Properties

Left

public Expression Left { get; init; }

Property Value

Expression

Operator

public string Operator { get; init; }

Property Value

string

Right

public Expression Right { get; init; }

Property Value

Expression