Package-level declarations
Types
Represents a 'do-while' loop statement in the Shake language. In a do-while loop, the body is executed at least once before the condition is checked.
Represents a 'for' loop statement in the Shake language.
Represents an 'if' statement in the Shake language. An 'if' statement is a conditional statement that executes a block of code based on the evaluation of a condition.
Represents a return statement in the Shake language. Used to return a value from a block of code, such as a function or a method.
Represents a statement in the Shake language. A statement is an instruction or action that forms part of a program's code.
Represents a variable declaration in the Shake language. A variable declaration is a statement that declares a new variable, optionally initializing it with a value.
Represents a 'while' loop statement in the Shake language.