CreationShakeDoWhile

Constructors

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

Properties

Link copied to clipboard
open override val body: CreationShakeCode

The body of the do-while loop. This block of code gets executed at least once.

Link copied to clipboard
open override val condition: CreationShakeValue

The condition for the do-while loop. After the first execution of the body, 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.