Table of Contents

Class As

Namespace
flx.SILQ.Statements
Assembly
flx.SILQ.dll

Represents an 'As' statement in the SILQ language.

public record As : Statement, IEquatable<Statement>, IEquatable<As>
Inheritance
As
Implements
Inherited Members

Remarks

This statement is used to define a specific behavior or operation in the SILQ language. It inherits from the base Statement class and implements the IVisitor pattern.

Constructors

As(Token)

Represents an 'As' statement in the SILQ language.

public As(Token Name)

Parameters

Name Token

Remarks

This statement is used to define a specific behavior or operation in the SILQ language. It inherits from the base Statement class and implements the IVisitor pattern.

Properties

Name

public Token Name { get; init; }

Property Value

Token

Methods

Accept(IVisitor)

Accepts a visitor that implements the IVisitor interface.

public override void Accept(IVisitor visitor)

Parameters

visitor IVisitor

The visitor to accept.