Re: [PATCH] vm: fix method vtables

2009-07-01 Thread Pekka Enberg
On Mon, 2009-06-29 at 22:58 +0200, Vegard Nossum wrote: > We used to simply append the subclass' methods to the end of the > vtable of the superclass. > > With this patch, we only append those methods which are not defined in > the superclass; the methods which are defined in the superclass are >

[PATCH] vm: fix method vtables

2009-06-29 Thread Vegard Nossum
We used to simply append the subclass' methods to the end of the vtable of the superclass. With this patch, we only append those methods which are not defined in the superclass; the methods which are defined in the superclass are overridden in the subclass' vtable. Signed-off-by: Vegard Nossum -

Re: [PATCH] vm: fix method vtables

2009-06-29 Thread Vegard Nossum
2009/6/29 Vegard Nossum : > We used to simply append the subclass' methods to the end of the > vtable of the superclass. > > With this patch, we only append those methods which are not defined in > the superclass; the methods which are defined in the superclass are > overridden in the subclass' vta