Interface IGotoLabel
The interface for a goto label.
Namespace: Loretta.CodeAnalysis.Lua
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public interface IGotoLabel
Properties
| Improve this Doc View SourceJumpSyntaxes
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 |
---|---|
GotoLabelStatementSyntax |
Name
The label's name.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |