Package ast
Types
Link copied to clipboard
An expression that evaluates to a value.
Link copied to clipboard
Represents an identifier for an object.
Link copied to clipboard
class IfStatement( val condition: Expression, val body: Block, val elseBody: Block?) : Statement
Content copied to clipboard
A conditional statement
Link copied to clipboard
class TryCatch( val tryBlock: Block, val name: Identifier, val type: Identifier, val catchBlock: Block) : Statement
Content copied to clipboard
Try to execute tryBlock, but execute catchBlock as soon as an exception of type type is raised.