[perl #77026] [BUG] Misleading .perl of anonymous classes in Rakudo

2013-05-10 Thread Will Coleda via RT
On Tue Oct 04 17:48:14 2011, coke wrote: > On Thu Aug 05 14:14:15 2010, masak wrote: > > rakudo: my $a = class { has $a; }; say $a.new(a => 1).perl; # > > that looks funny too... > > rakudo 19931f: OUTPUT«.new(a => 1)␤» > > but i have no idea what is "right", just looks funny... > > * masak subm

[perl #77026] [BUG] Misleading .perl of anonymous classes in Rakudo

2011-10-04 Thread Will Coleda via RT
On Thu Aug 05 14:14:15 2010, masak wrote: > rakudo: my $a = class { has $a; }; say $a.new(a => 1).perl; # > that looks funny too... > rakudo 19931f: OUTPUT«.new(a => 1)␤» > but i have no idea what is "right", just looks funny... > * masak submits rakudobug > rakudo: my $a = class { has $a; };

[perl #77026] [BUG] Misleading .perl of anonymous classes in Rakudo

2010-08-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #77026] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77026 > rakudo: my $a = class { has $a; }; say $a.new(a => 1).perl; # that looks funny too...