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
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
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
Applied with some changes in r31335
--
Salu2
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
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
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
Stephen Weeks wrote:
Commit 31294 implements this behavior. Can I get confirmation that it's
correct?
Just looked over the diff. Perfect. Thanks!
Allison