[perl #77864] [BUG] Unhelpful error messages instead of DWIM when doing &&= or ?&= or ?|= or ?^= on an undefined variable in the rhs in Rakudo

2010-09-19 Thread Patrick R. Michaud via RT
On Sat Sep 18 10:55:52 2010, moritz wrote: > Basic tests added to S03-operators/short-circuit.t. > > 19:52 < moritz_> rakudo: my $x; $x &&= 5; say $x > 19:52 <+p6eval> rakudo a204ba: OUTPUT«5␤» > 19:52 < moritz_> somebody please confirm that this is wrong > ... > 19:53 < jnthn> moritz_: Looks wron

[perl #64496] Null PMC access when calling IO.readline() in Rakudo

2010-09-19 Thread Lithos via RT
The Null PMC access does not happen anymore. The error message seems ok but for the missing class name for which there is a specific ticket (#77202). Should this ticket be resolved? Lithos $ ./perl6 -e 'my IO $a; $a.readline' Method 'readline' not found for invocant of class '' in main progra

[perl #77922] [BUG] Can't modify the elements of a Hash created with Hash.new in Rakudo

2010-09-19 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #77922] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77922 > rakudo: my $x = Hash.new(a => 1); $x = 2; say $x.perl rakudo ccde8d: OUTPUT«Cannot mod