Package ast.expr

Types

Link copied to clipboard
class Index(val expression: Expression, val index: Expression) : Expression

Represents an indexed expression, such as accessing an element of a list or map.

Link copied to clipboard
class VariableAccess(val name: Identifier) : Expression

Represents the accessing of a variable by its name, in order to use its value.