# New Ticket Created by "jason switzer"
# Please include the string: [perl #58560]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58560 >
The List !flatten method does not properly recurse into references.
List.pir:188 retr
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #58564]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58564 >
Running rakudo r30739 against the attached file (which is a stripped
down version of t/bl
As of r30764, code generated by --target=pir now runs directly from parrot:
$ cat hello.pl
sub foo() { say 'hello'; }
foo();
$ ./parrot perl6.pbc --target=pir --output=hello.pir hello.pl
$ ./parrot hello.pir
hello
$
Pm
On Wed, Sep 03, 2008 at 11:22:42AM -0700, chromatic wrote:
> On Wednesday 27 August 2008 07:26:00 Moritz Lenz wrote:
> > Carl MXXsak (via RT) wrote:
>
> > > r30589:
> > > $ cat for-loop-recursion.bug
> > > sub f($l) {
> > > return() if $l <= 0;
> > > say "entering $l";
> > > for 1..3 {
On Thu, Sep 04, 2008 at 02:25:45PM -0500, Patrick R. Michaud wrote:
> As of r37064, it's now possible to do this using the --target=pir
> option to rakudo:
>
> [...]
Also, it may be worth adding judicious calls to parrot_trace(1)
(a rakudo built-in function) to enable/disable tracing at
appropria
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #58578]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58578 >
Rakudo r30754 segfaults while running some regexe tests.
How to reproduce:
cd languages/
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #58574]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58574 >
r30750:
$ ./perl6 -e '1 ?? 2 : 3'
ResizablePMCArray: Can't pop from an empty array!
[...
On Thursday 04 September 2008 11:40:36 Moritz Lenz wrote:
> # New Ticket Created by Moritz Lenz
> # Please include the string: [perl #58578]
> # in the subject line of all future correspondence about this issue.
> # http://rt.perl.org/rt3/Ticket/Display.html?id=58578 >
>
>
> Rakudo r30754 segfau
On Thursday 04 September 2008 17:43:55 chromatic wrote:
> Run it through GDB, and it looks like Parrot runs out of stack space
> recursively throwing exceptions. If someone modifies Rakudo not to catch
> the topmost exception, I bet we could track this down faster.
... and here's what I think th