Interface IGotoLabel
The interface for a goto label.
Namespace: Loretta.CodeAnalysis.Lua
Assembly: cs.temp.dll.dll
Syntax
public interface IGotoLabel
Properties
JumpSyntaxes
The nodes that jump to this label.
Declaration
IEnumerable<GotoStatementSyntax> JumpSyntaxes { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<GotoStatementSyntax> |
LabelSyntax
The label's location.
Declaration
GotoLabelStatementSyntax? LabelSyntax { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<GotoLabelStatementSyntax> |
Name
The label's name.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| System.String |