Re: PDD15 implementation status

2007-04-17 Thread Jonathan Worthington
chromatic wrote: On Monday 16 April 2007 17:04, Jonathan Worthington wrote: We're still missing a couple of vtable methods it'd be nice to have in there (does, isa), which I ain't got time for now (need slp), but hopefully somebody may. In as of r18258. Great. Note that they nee

Re: PDD15 implementation status

2007-04-17 Thread chromatic
On Monday 16 April 2007 17:04, Jonathan Worthington wrote: > We're still missing a couple of vtable > methods it'd be nice to have in there (does, isa), which I ain't got > time for now (need slp), but hopefully somebody may. In as of r18258. Note that they need more tests when the subclass(

Re: PDD15 implementation status

2007-04-16 Thread Jonathan Worthington
Of the things I was hoping would be sorted out before release... Jonathan Worthington wrote: * addattribute segfaults if passed a PDD15 class. I'll fix that tomorrow, if nobody beats me to it Done by chromatic++. :-) * Oh, and the Role PMC doesn't do the name/namespace stuff right yet; it's m

Re: PDD15 implementation status

2007-04-16 Thread Jonathan Worthington
chromatic wrote: On Sunday 15 April 2007 15:52, Jonathan Worthington wrote: Sorry, I didn't get to adding one yet, but this should do it: $P0 = new 'Class' addattribute $P0 'foo' Hm, it segfaults for me (and rightly so) if I instantiate a non-class (try 'Hash' for some fun), but when

Re: PDD15 implementation status

2007-04-15 Thread chromatic
On Sunday 15 April 2007 15:52, Jonathan Worthington wrote: > chromatic wrote: > Sorry, I didn't get to adding one yet, but this should do it: > > $P0 = new 'Class' > addattribute $P0 'foo' Hm, it segfaults for me (and rightly so) if I instantiate a non-class (try 'Hash' for some fun), but when

Re: PDD15 implementation status

2007-04-15 Thread Jonathan Worthington
chromatic wrote: On Sunday 15 April 2007 15:28, Jonathan Worthington wrote: * addattribute segfaults if passed a PDD15 class. I'll fix that tomorrow, if nobody beats me to it If there's a test case, I can probably fix it. That'll free you up to implement new things. Sorry, I did

Re: PDD15 implementation status

2007-04-15 Thread chromatic
On Sunday 15 April 2007 15:28, Jonathan Worthington wrote: > * addattribute segfaults if passed a PDD15 class. I'll fix that > tomorrow, if nobody beats me to it If there's a test case, I can probably fix it. That'll free you up to implement new things. -- c

Re: PDD15 implementation status

2007-04-15 Thread Jonathan Worthington
Jonathan Worthington wrote: #Instantiate it. $P2 = $P2.new() Uh... $P2 = $P1.new() D'oh. Jonathan