fix type in call issue

This commit is contained in:
Torsten Ruger
2015-10-06 15:26:57 +03:00
parent f4a4ccb98e
commit 4e26166dff
7 changed files with 40 additions and 19 deletions

View File

@ -8,6 +8,11 @@ module Virtual
super(type, value)
@index = index
end
attr_reader :index
def to_s
"#{self.class.name}.new(#{index} , #{type}, #{value})"
end
def object_name
return :frame

View File

@ -45,6 +45,9 @@ module Virtual
super( type , value )
end
attr_reader :index
def to_s
"#{self.class.name}.new(#{index} , #{type}, #{value})"
end
end