nitc :: CallrefInstance :: callsite=
The original callsitenitc :: CallrefInstance :: defaultinit
nitc $ CallrefInstance :: SELF
Type of this instance, automatically specialized in every classnitc :: CallrefInstance :: callsite=
The original callsitecore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: CallrefInstance :: defaultinit
nitc :: Instance :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).
# An instance with the original receiver and callsite (for function reference)
class CallrefInstance
super Instance
# The original receiver
#
# ~~~nitish
# var a = new A
# var f = &a.toto # `a` is the original receiver
# ~~~
var recv: Instance
# The original callsite
#
# ~~~nitish
# var a = new A
# var f = &a.toto # `toto` is the original callsite
# ~~~
var callsite: CallSite
end
src/interpreter/naive_interpreter.nit:778,1--797,3