Andrew Whitworth via RT wrote:
Okay, I did some work on this last night, and here's the current status.
1) Modified the behavior of the "morph" PIR override so that it takes a
string in trunk. We previously weren't able to override this method at
all, so nobody is used to the "old way" at the P
Christoph Otto via RT wrote:
I'm running into a snag trying to implement this. It turns out that
many lines which use the PMC_x_val macros use them on different types of
PMCs, especially parents and children (e.g. FixedPMCArray and
ResizablePMCArray). There are also some instances where the PMC
Christoph Otto via RT wrote:
I'm running into a snag trying to implement this. It turns out that
many lines which use the PMC_x_val macros use them on different types of
PMCs, especially parents and children (e.g. FixedPMCArray and
ResizablePMCArray). There are also some instances where the PMC
On Fri, Jan 16, 2009 at 01:43:11AM -0800, I Sop wrote:
> With r35615.
>
> Following script to perl6 segfaults:
> sub yum() { }
> sub callit(&x) { x; }
> callit yum;
This now responds with an appropriate exception:
$ cat x.pl
sub yum() { }
sub callit(&x) { x; }
callit yum;
$ ./parrot p
# New Ticket Created by I Sop
# Please include the string: [perl #62432]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=62432 >
With r35615.
Following script to perl6 segfaults:
sub yum() { }
sub callit(&x) { x; }
callit y