[perl #65128] Cannot return empty typed List

2009-06-05 Thread jn...@jnthn.net via RT
On Fri Jun 05 07:29:16 2009, jn...@jnthn.net wrote: > On Sat Apr 25 09:23:43 2009, b...@abrij.org wrote: > > > > The following work as expected: > > > > my Num List sub f () { return ("A") }; > > my Num List sub f () { return (1) }; > > my List sub f () { return () }; > > > > The following dies

[perl #66270] [TODO] get Perl::Grammar.parse (with the Perl6::Grammar::Actions) to work

2009-06-05 Thread Patrick R. Michaud via RT
Test now added to S05-grammar/std.t, closing ticket. Pm

[perl #66270] [TODO] get Perl::Grammar.parse (with the Perl6::Grammar::Actions) to work

2009-06-05 Thread Patrick R. Michaud via RT
Now added in 056847f. Please add a test to t/spec so we can close this ticket. :-) Pm

Re: [perl #66250] Trouble with white space in Rakudo grammars

2009-06-05 Thread Jonathan Scott Duff
On Wed, Jun 3, 2009 at 8:08 AM, Håkon Skaarud Karlsen < perl6-bugs-follo...@perl.org> wrote: > # New Ticket Created by Håkon Skaarud Karlsen > # Please include the string: [perl #66250] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Displ

[perl #66330] [BUG] Null PMC access when calling Grammar.WALK in Rakudo

2009-06-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66330] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66330 > rakudo: my ($meth) = Grammar.WALK(:name); $meth(Perl6::Grammar.new, '42') rakudo 10a9b

[perl #66312] [BUG] Unicode doesn't work from the terminal.

2009-06-05 Thread via RT
# New Ticket Created by Daniel Carrera # Please include the string: [perl #66312] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66312 > The following lines all print "funny characters": perl6 -e 'say "ü"' perl6 -e 'say "ñ

[perl #66300] [BUG] .flip and .trans don't like each other.

2009-06-05 Thread via RT
# New Ticket Created by Daniel Carrera # Please include the string: [perl #66300] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66300 > To reproduce the error: "hello".flip.trans("aeiou" => "AEIOU") => too few arguments

[perl #66292] Something is wrong in Match.perl in Rakudo

2009-06-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66292] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66292 > rakudo: say ?("say " ~~ //); say $/.perl rakudo 77db80: OUTPUT«1␤No result object␤in m

[perl #66304] [BUG] Rakudo still promotes List to Array when assigning to a scalar variable

2009-06-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66304] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66304 > rakudo: my $a = (1,3,4); $a[1] = 8; # BAH! rakudo 10a9b2: ( no output ) hm. pmicha

[perl #66288] items of a constant array can be modified in Rakudo

2009-06-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66288] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66288 > rakudo: constant $ARR = (1,2,3,4);$ARR[1]=4;say $ARR rakudo 77db80: OUTPUT«1 4 3 4␤»