CreationShakeWhile

Constructors

Link copied to clipboard
constructor(condition: CreationShakeValue, body: CreationShakeCode)

Properties

Link copied to clipboard
open override val body: CreationShakeCode

The body of the while loop. This is the block of code that gets executed repeatedly as long as the condition is true.

Link copied to clipboard
open override val condition: CreationShakeValue

The condition for the while loop. The loop continues as long as this condition evaluates to true.

Functions

Link copied to clipboard
open override fun toJson(): Map<String, Any>

Converts this statement to a JSON representation. This can be useful for serialization, debugging, or analyzing the structure of the code.