[perl #66606] Statmenet modifier's "implied" lexical scope hides my declaration

2009-06-15 Thread via RT
# New Ticket Created by yary # Please include the string: [perl #66606] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66606 > yaryperl6: (my @random_numbers).push: int 10.rand for ^3; say @random_numbers.join: ' '; 12:

[perl #66538] [BUG] Rakudo falls in the infinite loop in Range with non-ascii

2009-06-15 Thread Patrick R. Michaud via RT
At the moment string ranges are only defined for certain subsets of Unicode. See the description under "Autoincrement precedence" in Synopsis 3. More to the point, if you want to cycle through a range of codepoints, you probably want: map { .chr }, 44032..45208; I agree that the string form

[perl #66596] [BUG] .trans.subst can cause "Lexical '$/' not found" error in multi subs

2009-06-15 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #66596] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66596 > Hi, multi to-json(Str $d) { $d.trans(['"'] => ['\"']).subst(/<-[\c0..\c127]>/, { "a"

Re: Why pass by reference?

2009-06-15 Thread Matthew Walton
> Complex or not in that sense, it complicates things in allowing the value to > be changed by another path.  I think that is something we want to avoid > doing, not present as a feature.  Much of my original post concerns the > actual meaning, not whether it is considered simple. > > Since then, I

Parrot Bug Summary

2009-06-15 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Jun 15 12:47:30 2009 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

[perl #66588] [BUG] 'is rw' allows constant arguments to change in Rakudo

2009-06-15 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66588] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66588 > Submitting the below message as a bug per John's request. -- Forwarded message

Re: Why pass by reference?

2009-06-15 Thread Matthew Walton
> Complex or not in that sense, it complicates things in allowing the value to > be changed by another path. I think that is something we want to avoid > doing, not present as a feature. Much of my original post concerns the > actual meaning, not whether it is considered simple. > > Since then, I