Table of Contents

Class Unary

Namespace
flx.SILQ.Expressions
Assembly
flx.SILQ.dll
public record Unary : Expression, IEquatable<Expression>, IEquatable<Unary>
Inheritance
Unary
Implements
Inherited Members

Constructors

Unary(Token, Expression)

public Unary(Token Operator, Expression Right)

Parameters

Operator Token
Right Expression

Properties

Operator

public Token Operator { get; init; }

Property Value

Token

Right

public Expression Right { get; init; }

Property Value

Expression

Methods

Accept<T>(IVisitor<T>)

public override T Accept<T>(IVisitor<T> visitor)

Parameters

visitor IVisitor<T>

Returns

T

Type Parameters

T