[perl #69320] [BUG] :().WHAT says Parcel(), not Signature()

2010-04-06 Thread jn...@jnthn.net via RT
On Tue Mar 23 05:34:58 2010, moritz wrote: > On Wed Sep 23 05:26:13 2009, masak wrote: > > rakudo: say (:()).WHAT > > rakudo 0eaf62: OUTPUT«The opcode 'descalarref_p' > > (descalarref<1>) was not found. Check the type and number of the > > arguments [...] > > whoa! > > * masak submits rakudobug

[perl #65538] [BUG] qq ignoring end of line after embedding

2010-04-06 Thread jn...@jnthn.net via RT
On Sun May 10 05:08:25 2009, richardh wrote: > git log > commit d4a0b3b8b5d3b9fb781ccdd154169d58472fbc06 > Author: pmichaud > Date: Sat May 2 13:35:22 2009 -0500 > > Bug (or at least inconsistent behaviour) seen in following snippet > > # qq with embedded perl > print qq[first line > second li

[perl #65962] loop with two comma-separated 'my' variable initialisations doesn't parse in Rakudo

2010-04-06 Thread jn...@jnthn.net via RT
On Sun May 24 14:44:40 2009, masak wrote: > rakudo: loop (my $a = 1, my $b = 2; $a < 5; $a++, $b++) { > say "$a $b" } > rakudo 23718a: OUTPUT«Unable to set lvalue on PAST::Val node [...] > that oughta work > * masak reports rakudobug > it's not because rakudo is parsing it as a list assignment

[perl #74074] Cross meta operator does not allow more than two arguments

2010-04-06 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #74074] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74074 > 22:05 <@moritz_> rakudo: say 1 X~ 2 X~ 22:05 <+p6eval> rakudo c41cf3: OUTPUT«No applicab

[perl #57992] Implement infinite ranges

2010-04-06 Thread Moritz Lenz via RT
On Sat Aug 16 07:30:22 2008, je...@perl.org wrote: > - awaiting Whatever implementation Implemented, and tested.

[perl #74076] [BUG] Null PMC access when accessing $OUTER::_ in a block in Rakudo

2010-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74076] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74076 > rakudo: my @t; for < a b > { @t.push( sub { $OUTER::_ } ) }; say $_() for @t rak

Re: [perl #74054] is rw in sub signature does not appear to be working

2010-04-06 Thread Bruce Keeler
On 4/4/2010 7:13 AM, Richard Hainsworth (via RT) wrote: # New Ticket Created by Richard Hainsworth # Please include the string: [perl #74054] # in the subject line of all future correspondence about this issue. #http://rt.perl.org/rt3/Ticket/Display.html?id=74054> using rakudo updated on 4.4.

[perl #74084] [BUG] Rakudo wrongly accepts a case of a 'when' immediately following a block without intermediate semicolon or newline, STD.pm doesn't

2010-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74084] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74084 > rakudo: my %h = a => '42'; given %h { when :(Int :$a) { say "lol int" }when :(Str :$a)

[perl #74078] [BUG] Can't find &say inside method that came from a role in Rakudo

2010-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74078] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74078 > rakudo: role Animal { method speak() { say "Blah"; } }; role Canine does Animal { metho

[perl #66520] [BUG] --target=parse doesn't recognize user-defined operators

2010-04-06 Thread jn...@jnthn.net via RT
On Thu Jun 11 09:25:45 2009, masak wrote: > In Rakudo 86aeafb, a file with a user-defined operator sub runs fine, > but fails with --target=parse: > > $ cat factorial > sub postfix:(Int $n) { > [*] 1..$n; > } > say 5!; > $ perl6 factorial > 120 > $ perl6 --target=parse factorial > Statement no

[perl #68742] No line number in regex error messages (PGE)

2010-04-06 Thread Will Coleda via RT
On Sun Aug 23 05:51:21 2009, equinox wrote: > Hi, > > I tried rakudo.. I guess you want to know about it. > > The following example does not give proper error message. There is no > line number. > while ( $filenamelist =~ /\G(.+?),|\G(.+)/g ) {} > > Marton Papp with rakudo rev c41cf3f: ./perl

[perl #74072] Cross meta operator flattens arrays

2010-04-06 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #74072] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74072 > 22:03 <@TimToady> rakudo: say [1,2] X~# /me suspects a bug 22:03 <+p6eval> rakudo c41

[perl #74070] [BUG] You get -0 when dealing with Num, but just 0 when dealing with Int in Rakudo

2010-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74070] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74070 > rakudo: say -0; say -"0" rakudo 38db52: OUTPUT«0␤-0␤» * masak submits rakudobug :D r

Re: [perl #74030] Perl6 doesn't run if invoked from external directories

2010-04-06 Thread Moritz Lenz
Franz Nagel wrote: > Am 03.04.2010 21:08, schrieb Moritz Lenz via RT: >> Did you run 'make install', and try to launch the installed executable? >> >> > I didn't build but installed the precompiled Windows version. > ( http://sourceforge.net/projects/parrotwin32/files/ ) > It runs beautifully o