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

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 { f($l-1);

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 -- Moritz Lenz