Class IrWhile
Represents a while loop in the IR.
Inherited Members
Namespace: VM.Core.IR.Nodes
Assembly: VM.dll
Syntax
public class IrWhile : 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 for the while loop.
Declaration
public IrNode? Condition
Field Value
Type | Description |
---|---|
IrNode |