r30282 - docs/Perl6/Spec

2010-04-02 Thread pugs-commits
Author: masak Date: 2010-04-03 02:25:54 +0200 (Sat, 03 Apr 2010) New Revision: 30282 Modified: docs/Perl6/Spec/S12-objects.pod Log: [S12] removed unnecessary C<> Modified: docs/Perl6/Spec/S12-objects.pod === --- docs/Perl6/Spec/S1

[perl #73988] [BUG] No warning or error when declaring two CATCH (or CONTROL) blocks in the same scope in Rakudo

2010-04-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73988] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73988 > rakudo: die "A"; CATCH { say "OH HAI" }; CATCH { say "OH NOES" } rakudo 63ff06: OUTPUT

Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Leon Timmermans
On Fri, Apr 2, 2010 at 5:59 PM, Aristotle Pagaltzis wrote: > He is saying he can’t see how these differ from each other: > >      .doit(1,2,3): { $^a <=> $^b }       # okay > +    .doit(1,2,3): { $^a <=> $^b }       # okay > > Or how these two differ from each other: > > +    .doit(1,2,3):{ $^a <=

[perl #73990] [BUG] [WEIRD] Null PMC access when executing '0 but last' in Rakudo

2010-04-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73990] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73990 > rakudo: 0 but last rakudo 63ff06: OUTPUT«Warning␤Null PMC access in can() [...] * masa

Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Aristotle Pagaltzis
* Leon Timmermans [2010-03-27 09:40]: > On Sat, Mar 27, 2010 at 2:01 AM, Geoffrey Broadwell > wrote: > >On Fri, 2010-03-26 at 08:38 +0100, pugs-comm...@feather.perl6.nl wrote: > >>     .doit: { $^a <=> $^b }              # okay > >>     .doit(): { $^a <=> $^b }            # okay > >>     .doit(1

[perl #73994] [BUG] Wrong multiplicative default when doing infix:<*=> on an undefined value in Rakudo

2010-04-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73994] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73994 > rakudo: my $x; say $x * 3 rakudo 63ff06: OUTPUT«0␤» no warning? alpha: my $x; say $x

[perl #73992] [BUG] Null PMC access when assigning to a lexical in a CHECK or an INIT phaser block in Rakudo

2010-04-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73992] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73992 > rakudo: my $a; CHECK { $a = 42 } rakudo 63ff06: OUTPUT«Null PMC access in getprop() [.

[perl #73998] Escaping a dollar doesn't prevent interpolation in double-quoted string

2010-04-02 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #73998] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73998 > 14:46 <@moritz_> rakudo: my $x = 3; say "foo \$x" 14:46 <+p6eval> rakudo 1c5737: OUTPUT«f