moved the whole parfait into its namespace/module

This commit is contained in:
Torsten Ruger
2015-05-11 18:55:49 +03:00
parent a552e3fbce
commit ab870e3323
13 changed files with 245 additions and 208 deletions

View File

@@ -20,10 +20,12 @@
# Also at runtime Messages and Frames remain completely "normal" objects. Ie have layouts and so on.
# Which resolves the dichotomy of objects on the stack or heap. Sama sama.
class Frame < Object
def initialize locals , temps
@locals = locals
@tmps = tmps
module Parfait
class Frame < Object
def initialize locals , temps
@locals = locals
@tmps = tmps
end
attr_accessor :locals , :tmps
end
attr_accessor :locals , :tmps
end