fold last of the virtual into register
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
module Virtual
|
||||
module Register
|
||||
|
||||
class Constant < ::Virtual::Object
|
||||
class Constant < ::Register::Object
|
||||
end
|
||||
class TrueConstant < Constant
|
||||
end
|
||||
|
@@ -1,4 +1,4 @@
|
||||
module Virtual
|
||||
module Register
|
||||
# So when an object calls a method, or sends a message, this is what it sends: a Message
|
||||
|
||||
# A message contains the sender, return and exceptional return addresses,the arguments,
|
||||
|
@@ -1,4 +1,4 @@
|
||||
module Virtual
|
||||
module Register
|
||||
# Plock (Proc-Block) is mostly a Block but also somewhat Proc-ish: A Block that carries data.
|
||||
#
|
||||
# Data in a Block is usefull in the same way data in objects is. Plocks being otherwise just code.
|
||||
|
@@ -1,4 +1,4 @@
|
||||
module Virtual
|
||||
module Register
|
||||
# A slot is a slot in an object. It is the storage location for a value.
|
||||
# (Remember, values are typed)
|
||||
# From a memory perspective a slot is an index into an array (the object)
|
||||
|
Reference in New Issue
Block a user