remove class_eval on slots to map registers

Use their class names (or for now called object names)
these are the same that Register helper functions accept already anyway
This commit is contained in:
Torsten Ruger
2015-06-30 09:39:45 +03:00
parent c4502c5030
commit bd77db656a
6 changed files with 22 additions and 27 deletions

View File

@ -7,6 +7,10 @@ module Virtual
def initialize type = Unknown, value = nil
super
end
def object_name
return :frame
end
end
end