Package-level declarations
Types
Link copied to clipboard
class CreationShakeDoWhile(val condition: CreationShakeValue, val body: CreationShakeCode) : CreationShakeStatement, ShakeDoWhile
Link copied to clipboard
class CreationShakeFor(val init: CreationShakeStatement, val condition: CreationShakeValue, val update: CreationShakeStatement, val body: CreationShakeCode) : CreationShakeStatement, ShakeFor
Link copied to clipboard
class CreationShakeIf(val condition: CreationShakeValue, val body: CreationShakeCode, val elseBody: CreationShakeCode? = null) : CreationShakeStatement, ShakeIf
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class CreationShakeVariableDeclaration(val scope: CreationShakeScope, val name: String, var type: ShakeType, val initialValue: CreationShakeValue?, val isFinal: Boolean) : CreationShakeDeclaration, CreationShakeStatement, ShakeVariableDeclaration
Link copied to clipboard
class CreationShakeWhile(val condition: CreationShakeValue, val body: CreationShakeCode) : CreationShakeStatement, ShakeWhile