[perl #82524] get_version.pl problem when run in Windows Command Prompt window.

2013-11-13 Thread Will Coleda via RT
On Thu Jan 20 05:47:29 2011, thundergnat wrote: > When building Rakudo under Windows, I noticed several warnings "fatal: > No names found, cannot describe anything." during the make process. > Investigating it closer, it stems from Windows Command.exe CLI being > obstreperous about what quoting it

[perl #74890] [BUG] my @a = (1,2,3,4); @a.>>.say doesn't work

2013-11-13 Thread Will Coleda via RT
On Tue May 04 07:51:35 2010, jimmy wrote: > 09:44 JimmyZ rakudo: my @a = (1,2,3,4); @a>>.say > 09:44 p6evalrakudo 1eef08: OUTPUT«1␤2␤3␤4␤» > 09:44 JimmyZ rakudo: my @a = (1,2,3,4); @a.>>.say > 09:44 p6eval rakudo 1eef08: OUTPUT«Confused at line 11, near > "@a.>>.say"␤current instr.: 'per

[perl #115842] [BUG] Comma can't be last in a compilation unit in Rakudo

2013-11-13 Thread Will Coleda via RT
On Tue Nov 20 09:11:36 2012, masak wrote: > r: my @ := 0, > rakudo bf472b: OUTPUT«===SORRY!===␤Confused [...] > huh. > r: my @ := 0, ; > rakudo bf472b: ( no output ) > that looks like a bug to me, actually. > you can't end the file with a comma? > r: my @array = 1, 2, 3, ; > rakudo bf472b

[perl #115454] [BUG] No .rotate on Parcel

2013-11-13 Thread Will Coleda via RT
On Wed Oct 24 10:38:42 2012, masak wrote: > rn: my @a = ; @a[2, 3] .= rotate; @a[3] > .= ucfirst; say @a > niecza v22-14-g136ddcf: OUTPUT«The quick fox Brown␤» > ..rakudo 26c0aa: OUTPUT«No such method 'rotate' for invocant > of type 'Parcel' [...] > Niecza++ > * masak submits rakudobug > someh

[perl #115184] Segmentation Fault on 'try { CATCH { ~$! }; die }'

2013-11-13 Thread Will Coleda via RT
On Mon Oct 08 13:45:22 2012, pawel.pab...@implix.com wrote: > rakudo: try { CATCH { ~$! }; die } # shortest form that > segfaults on my machine > rakudo 870d18: OUTPUT«(signal SEGV)» > rakudo: say $*PERL > rakudo 870d18: OUTPUT«("name" => "rakudo", "compiler" => > {"name" => "rakudo", "ver" =>

[perl #116014] [BUG] infinite loop when generating ranges of characters (regression)

2013-11-13 Thread Will Coleda via RT
On Fri Dec 07 08:58:59 2012, cvincent wrote: > http://irclog.perlgeek.de/perl6/2012-12-07#i_6221234 > > rn: ('A' ... 'a').say > niecza v24-5-g599cbcb: OUTPUT«A B C D E F G H I J K L M N O P > Q R S T U V W X Y Z [ \ ] ^ _ ` a␤» > ..rakudo 53daef: OUTPUT«(timeout)» > it

[perl #86880] [BUG] Null PMC access when instantiating a class doing a role with a private 'my'-scoped attribute in Rakudo

2013-11-13 Thread Will Coleda via RT
On Sun May 27 20:41:04 2012, coke wrote: > On Wed Mar 23 15:17:03 2011, masak wrote: > > rakudo: role Breakable { my $!broken = Bool::False; }; > > class > > Frobnitz does Breakable {}; say Frobnitz.new() > > rakudo d5ccf9: OUTPUT«===SORRY!===␤Null PMC access in > > get_attr_str()␤» > > * masak s

[perl #109064] Parent attribute reference in BUILD gives LTA null PMC access message

2013-11-13 Thread Will Coleda via RT
On Wed Jan 25 14:49:07 2012, jn...@jnthn.net wrote: > On Wed Jan 25 14:02:06 2012, pawel.pab...@implix.com wrote: > > bbkr > > rakudo: class A { has Int $.id; }; class B is A { submethod BUILD ( > >:$!id = 10 ) { } }; B.new > > > > p6eval > > rakudo 3670b7: OUTPUT«Null PMC access in get_pmc_ke