Ilya Martynov <[EMAIL PROTECTED]> wrote: > 1. find_method crashes parrot when used with dynclasses
Fixed. > 2. Why following code emits "Method 'find_method' not found"? > Shouldn't find_method be defined in vtable of Boolean PMC? > .sub main > $P0 = new Boolean > find_method $P1, $P0, 'find_method' Well Boolean doesn't implement or better export a 'find_method' method. Only a few PMC classes have methods like ParrotIO. These are NCI mthods inside the class. You can't create real classes derived from an arbitrary PMC yet. > .pcc_begin_return > .pcc_end_return end for main. leo