WhileStatement
data class WhileStatement(val lPar: Node.Keyword.LPar, val condition: Node.Expression, val rPar: Node.Keyword.RPar, val body: Node.Expression, val supplement: NodeSupplement = NodeSupplement()) : Node.Statement.WhileStatementBase
AST node that represents a while statement. The node corresponds to KtWhileExpression.
Constructors
Link copied to clipboard
constructor(lPar: Node.Keyword.LPar, condition: Node.Expression, rPar: Node.Keyword.RPar, body: Node.Expression, supplement: NodeSupplement = NodeSupplement())