Re: [svn:parrot] r31324 - trunk/src/pmc

2008-09-22 Thread chromatic
On Monday 22 September 2008 13:01:35 NotFound wrote: > After some looking: other functions on this pmc uses elements, that is > implemented in the parent, FixedIntegerArray. FixedIntegerArray > implements get_integer by calling elements, so looks like elements is > the 'boss'. > > Will be better

Re: [svn:parrot] r31324 - trunk/src/pmc

2008-09-22 Thread NotFound
On Mon, Sep 22, 2008 at 12:34 AM, NotFound <[EMAIL PROTECTED]> wrote: >>> +=item C >>> + >>> +Removes the element at C. >>> + >>> +=cut >>> + >>> +*/ >>> + >>> +VTABLE void delete_keyed_int(INTVAL key) { >>> +INTVAL size = PMC_int_val(SELF); >> >> With the use of the set_integer_native

[perl #59202] [BUG] [PATCH] Perl 6 code "class A::A {}; class A::A {}" crashes parrot

2008-09-22 Thread Patrick R. Michaud via RT
Patch rejected -- this patch modifies core OO-handling of Parrot to assume that '::' is a valid classname separator. Parrot doesn't use '::' as a separator -- that's strictly a Perlism. Pm

Re: [perl #57776] [BUG] PIO_buf_read segfault

2008-09-22 Thread NotFound
Applied with some changes in r31335 -- Salu2

Parrot Bug Summary

2008-09-22 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Sep 22 13:00:02 2008 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

Re: [svn:parrot] r31324 - trunk/src/pmc

2008-09-22 Thread Vasily Chekalkin
NotFound wrote: +=item C + +Removes the element at C. + +=cut + +*/ + +VTABLE void delete_keyed_int(INTVAL key) { +INTVAL size = PMC_int_val(SELF); With the use of the set_integer_native entry later, this should probably be: INTVAL size = SELF.get_integer(); I borrowed it f

Re: [svn:parrot] r31305 - in branches/pdd27mmd: include/parrot src

2008-09-22 Thread Allison Randal
chromatic wrote: On Sunday 21 September 2008 03:17:18 [EMAIL PROTECTED] wrote: +dod_unregister_pmc(interp, sig_object); [...] That's far away from registering the PMC; is there a way to move them closer together? We could register it after it's returned from 'Parrot_build_sig_object_fro

Re: throw oddities in pdd23

2008-09-22 Thread Allison Randal
Stephen Weeks wrote: Commit 31294 implements this behavior. Can I get confirmation that it's correct? Just looked over the diff. Perfect. Thanks! Allison