logo

class

compiler::SuperExpr

sys::Obj
  compiler::Node
    compiler::Expr
      compiler::LocalVarExpr
        compiler::SuperExpr

SuperExpr is used to access super class slots. It always references the implicit this local variable stored in register zero, but the super class's slot definitions.

Slots

explicitType

CType explicitType

Source

isAssignable

override Bool isAssignable()

Return if this expression can be used as the left hand side of an assignment expression.

Source

make

new make(Location location, CType explicitType := null)

Source

register

override Int register()

Source

toStr

override Str toStr()

Return a string representation of this object.

Source