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

2008-10-24 Thread Moritz Lenz
Илья wrote: > Hi there! > First of all, please, excuse my bad English. Again :) > > This bug still there, in spate of two stable realize of the Parrot. > It`s block our progress on the HTML::Template porting in November > project and correct realization of is_deeply in our Test.pm :( > Unfortunate

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

2008-10-24 Thread Илья
Hi there! First of all, please, excuse my bad English. Again :) This bug still there, in spate of two stable realize of the Parrot. It`s block our progress on the HTML::Template porting in November project and correct realization of is_deeply in our Test.pm :( Unfortunately I am not pir or C or an

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

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-03 Thread chromatic
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 { > > f($l-1); > > say "looping in $l"; > > } > > } > > f(2);

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

2008-08-27 Thread Moritz Lenz
Carl MXXsak (via RT) wrote: > r30589: > $ cat for-loop-recursion.bug > sub f($l) { > return() if $l <= 0; > say "entering $l"; > for 1..3 { > f($l-1); > say "looping in $l"; > } > } > f(2); I re-worked that as a test and added it to t/spec/S04-statements/for.t Moritz -