class Myst::TSymbol
- Myst::TSymbol
- Myst::MutableValue
- Reference
- Object
Defined in:
myst/interpreter/value.crConstant Summary
-
SYMBOLS =
{} of String => TSymbol
Constructors
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. -
#hash(hasher)
See
Object#hash(hasher)
- #name : String
- #name=(name : String)
-
#to_s
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #type_name
- #value : UInt64
- #value=(value : UInt64)
Instance methods inherited from class Myst::MutableValue
ivars : Scope
ivars,
ivars=(ivars : Scope)
ivars=,
truthy?
truthy?,
type_name
type_name
Constructor Detail
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.
def to_s
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO)
which can be overridden for custom implementations.
Also see #inspect
.