assembling layout

This commit is contained in:
Torsten Ruger 2015-06-07 10:06:08 +02:00
parent 13ab029cc5
commit 575d19cb02
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,6 @@ module Parfait
super()
@name = name
@instance_methods = List.new_object
@name = name
@super_class = superclass
@meta_class = nil#MetaClass.new(self)
end

View File

@ -171,6 +171,9 @@ module Register
array.position
end
def assemble_Layout layout
assemble_object(layout)
end
def assemble_Dictionary hash
# so here we can be sure to have _identical_ keys/values arrays
assemble_object( hash , [ hash.keys , hash.values ] )