Re: [perl #63002] Int values cannot be passed as params and then used in ranges in Rakudo

2009-02-11 Thread Patrick R. Michaud
On Wed, Feb 11, 2009 at 05:02:52AM -0800, jn...@jnthn.net via RT wrote: > Was more clone-related fun. I suspect when we've been calling Parrot's > clone directly, we'll usually want to really be calling .clone() on the > object, since it can handle ObjectRef chains. That fixes this issue. (Of > cou

[perl #63002] Int values cannot be passed as params and then used in ranges in Rakudo

2009-02-11 Thread jn...@jnthn.net via RT
On Tue Feb 03 07:25:43 2009, masak wrote: > Parrot r36318 (before the merge that broke Rakudo), and Rakudo 21f374. > > $ perl6 -e 'my $a = 5; say $a.PARROT; say $a .. 5' > Int > 5 > $ perl6 -e 'my $a = 5; sub foo($a) { say $a.PARROT; say $a .. 5 }; foo($a)' > ObjectRef->Int > Undefined value shift

[perl #63002] Int values cannot be passed as params and then used in ranges in Rakudo

2009-02-03 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #63002] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=63002 > Parrot r36318 (before the merge that broke Rakudo), and Rakudo 21f374. $ perl6 -e 'my $