more some tests

This commit is contained in:
Torsten Ruger
2015-11-30 16:10:08 +02:00
parent 19dd7b96d6
commit afe16868b5
3 changed files with 32 additions and 7 deletions

View File

@ -1,7 +1,6 @@
class Layout < Object
Class object_class()
return self.object_class
end
field Class object_class
field List instance_methods
field Integer indexed_length
end

View File

@ -6,7 +6,12 @@ class Object
Class get_class()
Layout l = self.layout
return l.object_class()
return l.object_class
end
Word get_class_name()
Layout l = self.layout
Class c = l.object_class
return c.name
end
end