Class RepeatUntilStatementSyntax
Inheritance
System.Object
RepeatUntilStatementSyntax
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public sealed class RepeatUntilStatementSyntax : StatementSyntax
Properties
|
Improve this Doc
View Source
Body
Declaration
public StatementListSyntax Body { get; }
Property Value
|
Improve this Doc
View Source
Condition
The repeat until's condition.
Declaration
public ExpressionSyntax Condition { get; }
Property Value
|
Improve this Doc
View Source
RepeatKeyword
The 'repeat' until keyword.
Declaration
public SyntaxToken RepeatKeyword { get; }
Property Value
|
Improve this Doc
View Source
SemicolonToken
The semicolon at the end of the statement (if any).
Declaration
public override SyntaxToken SemicolonToken { get; }
Property Value
Overrides
|
Improve this Doc
View Source
UntilKeyword
Declaration
public SyntaxToken UntilKeyword { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept(LuaSyntaxVisitor)
Declaration
public override void Accept(LuaSyntaxVisitor visitor)
Parameters
Overrides
|
Improve this Doc
View Source
Accept<TResult>(LuaSyntaxVisitor<TResult>)
Declaration
public override TResult Accept<TResult>(LuaSyntaxVisitor<TResult> visitor)
Parameters
Returns
Type Parameters
Overrides
Loretta.CodeAnalysis.Lua.LuaSyntaxNode.Accept<TResult>(Loretta.CodeAnalysis.Lua.LuaSyntaxVisitor<TResult>)
|
Improve this Doc
View Source
AddBodyStatements(StatementSyntax[])
Declaration
public RepeatUntilStatementSyntax AddBodyStatements(params StatementSyntax[] items)
Parameters
Returns
|
Improve this Doc
View Source
Update(SyntaxToken, StatementListSyntax, SyntaxToken, ExpressionSyntax, SyntaxToken)
Declaration
public RepeatUntilStatementSyntax Update(SyntaxToken repeatKeyword, StatementListSyntax body, SyntaxToken untilKeyword, ExpressionSyntax condition, SyntaxToken semicolonToken)
Parameters
Returns
|
Improve this Doc
View Source
WithBody(StatementListSyntax)
Declaration
public RepeatUntilStatementSyntax WithBody(StatementListSyntax body)
Parameters
Returns
|
Improve this Doc
View Source
WithCondition(ExpressionSyntax)
Declaration
public RepeatUntilStatementSyntax WithCondition(ExpressionSyntax condition)
Parameters
Returns
|
Improve this Doc
View Source
WithRepeatKeyword(SyntaxToken)
Declaration
public RepeatUntilStatementSyntax WithRepeatKeyword(SyntaxToken repeatKeyword)
Parameters
Returns
|
Improve this Doc
View Source
WithSemicolonToken(SyntaxToken)
Declaration
public RepeatUntilStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken)
Parameters
Returns
|
Improve this Doc
View Source
WithUntilKeyword(SyntaxToken)
Declaration
public RepeatUntilStatementSyntax WithUntilKeyword(SyntaxToken untilKeyword)
Parameters
Returns
Implements
IFormattable
Extension Methods