rubyx/lib/soml/parfait/object.soml
Torsten Ruger 69918c8e88 add some message and remove fields
those fields are already present in the classes
(in the future they should be defined in some and integrated to ruby,
but that would mean parsing to boot and parsing doesn’t yet work on
opal)
2015-11-08 13:54:58 +02:00

13 lines
152 B
Plaintext

class Object
Layout get_layout()
return self.layout
end
Class get_class()
Layout l = self.layout
return l.object_class()
end
end