Re: [PATCH] vm: add unimplemented interface methods to abstract classes

2009-08-23 Thread Pekka Enberg
Hi Vegard, (I'm cc'ing Eduard on the args map question.) On Sat, 2009-08-22 at 23:39 +0200, Vegard Nossum wrote: @@ -371,7 +371,56 @@ int vm_class_link(struct vm_class *vmc, const struct cafebabe_class *class) } } - vmc-methods = malloc(sizeof(*vmc-methods) *

[PATCH] vm: add unimplemented interface methods to abstract classes

2009-08-22 Thread Vegard Nossum
We use the term miranda method here as a method which is omitted by the compiler (because the method is declared in an interface and the implementing class is abstract), and which needs to be inserted by the VM. Reported-by: Tomek Grabiec tgrab...@gmail.com Signed-off-by: Vegard Nossum