fold last of the virtual into register

This commit is contained in:
Torsten Ruger
2015-10-22 18:16:29 +03:00
parent f658ecf425
commit dcbd3c7091
67 changed files with 161 additions and 227 deletions

View File

@@ -1,6 +1,6 @@
module Virtual
module Register
class Constant < ::Virtual::Object
class Constant < ::Register::Object
end
class TrueConstant < Constant
end

View File

@@ -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,

View File

@@ -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.

View File

@@ -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)