Interface: WhileLoopStatementSemantics
compiler.WhileLoopStatementSemantics
Semantics for AST Node WhileLoopIterationStatement.
Since
0.10.0
Hierarchy
-
↳
WhileLoopStatementSemantics
Table of contents
Properties
Properties
loopBody
• loopBody: Statement<StatementSemantics, StatementTypeSemantics>
The body of the loop, which is executed as long as loopCondition is true.
Since
0.10.0
Overrides
IterationStatementSemantics.loopBody
Defined in
kipper/core/src/compiler/ast/nodes/statements/iteration-statement/while-loop-iteration-statement/while-loop-iteration-statement-semantics.ts:23
loopCondition
• loopCondition: Expression<ExpressionSemantics, ExpressionTypeSemantics, CompilableASTNode<SemanticData, TypeData>>
The loop condition, which, if it evaluates to true will trigger the loop to continue executing.
Since
0.10.0
Overrides
IterationStatementSemantics.loopCondition
Defined in
kipper/core/src/compiler/ast/nodes/statements/iteration-statement/while-loop-iteration-statement/while-loop-iteration-statement-semantics.ts:18