bit more on booting of the space

This commit is contained in:
Torsten Ruger
2015-05-24 19:59:19 +03:00
parent 2ccbea04b9
commit 5670f07eac
6 changed files with 29 additions and 17 deletions

View File

@@ -21,12 +21,9 @@
# Which resolves the dichotomy of objects on the stack or heap. Sama sama.
module Parfait
class Frame < Object
def initialize locals , temps
class Frame < List
def initialize
super()
@locals = locals
@tmps = tmps
end
attr_accessor :locals , :tmps
end
end