Package-level declarations

Types

Link copied to clipboard

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.

Link copied to clipboard

Represents a 'for' loop statement in the Shake language.

Link copied to clipboard

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.

Link copied to clipboard
interface ShakeReturn

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.

Link copied to clipboard
interface ShakeStatement

Represents a statement in the Shake language. A statement is an instruction or action that forms part of a program's code.

Link copied to clipboard

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.

Link copied to clipboard

Represents a 'while' loop statement in the Shake language.