VariableAccess

class VariableAccess(val name: Identifier) : Expression

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

Constructors

Link copied to clipboard
fun VariableAccess(name: Identifier)

Properties

Link copied to clipboard
val name: Identifier

an identifier that resolves to the variable whose value is to be accessed.