Re: [perl #27504] find_method op problems

2004-03-08 Thread Jens Rieks
Hi, On Monday 08 March 2004 16:40, Leopold Toetsch wrote: > Jens Rieks <[EMAIL PROTECTED]> wrote: > >> $P0 = new Foo > > > > This is wrong. Use $P0 = new "Foo" instead. > > No. There isn't even such an opcode. Above code is fine and working, > because during compilation of "loadlib", the c

Re: [perl #27504] find_method op problems

2004-03-08 Thread Leopold Toetsch
Jens Rieks <[EMAIL PROTECTED]> wrote: >> $P0 = new Foo > This is wrong. Use $P0 = new "Foo" instead. No. There isn't even such an opcode. Above code is fine and working, because during compilation of "loadlib", the class file gets already loaded so that the type is registered. This might c

Re: [perl #27504] find_method op problems

2004-03-08 Thread Leopold Toetsch
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

Re: [perl #27504] find_method op problems

2004-03-08 Thread Jens Rieks
Hi again, (small note for little jens: first read _everything_, then write an answer, then read it and send it afterwards...) > On Monday 08 March 2004 13:33, Ilya Martynov wrote: > > # New Ticket Created by Ilya Martynov > > # Please include the string: [perl #27504] > > # in the subject lin

Re: [perl #27504] find_method op problems

2004-03-08 Thread Jens Rieks
Hi, On Monday 08 March 2004 13:33, Ilya Martynov wrote: > # New Ticket Created by Ilya Martynov > # Please include the string: [perl #27504] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org:80/rt3/Ticket/Display.html?id=27504 > > > > > 1. find_method

[perl #27504] find_method op problems

2004-03-08 Thread via RT
# New Ticket Created by Ilya Martynov # Please include the string: [perl #27504] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=27504 > 1. find_method crashes parrot when used with dynclasses For example if I build Foo