[perl #82790] [BUG] Rakudo is either too permissive parsing namespaced dynamicals, or too prohibitive assigning to them

2011-01-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #82790] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=82790 > there is at least a little code smell inherent in p6 dynamic variables, since these are

[perl #82810] [BUG] Strange behavior when doing ||= assignment to an 'is copy' array parameter

2011-01-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #82810] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=82810 > rakudo: sub foo(@a is copy) { @a ||= -1, -1, +1, +1; say @a }; foo([1,2,3,4]); say "ali

[perl #82812] [BUG] Rakudo doesn't do list assignment for ops with sufficiently loose precedence

2011-01-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #82812] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=82812 > rakudo: my @a; @a ||= -1, -1, +1, +1; say @a.perl rakudo 188755: OUTPUT«[-1]␤» is ||=

[perl #82814] [BUG] Can't assign to attribute belonging to deriving class when object was blessed in base class in Rakudo

2011-01-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #82814] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=82814 > rakudo: class A { method new { self.bless(*) } }; class B is A { has $.c is rw; method