[perl #58560] [BUG] !flatten does not handle references

2008-09-04 Thread jason switzer
# 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

[perl #58564] [BUG] Running a file leads to assertion failures in IMCC

2008-09-04 Thread via RT
# 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

[perl #53040] rakudo : code generated by --target=pir does not execute in parrot

2008-09-04 Thread Patrick R. Michaud via RT
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

Re: [perl #58392] Recursion and for loops interact badly in Rakudo

2008-09-04 Thread Patrick R. Michaud
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 {

Re: [perl #58392] Recursion and for loops interact badly in Rakudo

2008-09-04 Thread Patrick R. Michaud
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

[perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread via RT
# 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/

[perl #58574] Rakudo chokes on ?? :

2008-09-04 Thread Carl Mäsak
# 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! [...

Re: [perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread chromatic
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

Re: [perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread chromatic
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