Class IrRepeat
Represents a repeat-until loop in the IR.
Inherited Members
Namespace: VM.Core.IR.Nodes
Assembly: VM.dll
Syntax
public class IrRepeat : IrNode
Fields
Body
Gets the list of statements in the loop body.
Declaration
public List<IrNode?> Body
Field Value
Type | Description |
---|---|
List<IrNode> |
Condition
Gets or sets the condition expression checked after each iteration.
Declaration
public IrNode? Condition
Field Value
Type | Description |
---|---|
IrNode |