[perl #98954] [BUG] Nested indexing semantics changed from Beijing to nom in Rakudo

2013-09-12 Thread Carl Mäsak via RT
On Mon Sep 12 15:04:09 2011, masak wrote: > b: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. > 3).perl > b 1b7dd1: OUTPUT«(2, 1, Any, Any)␤» > nom: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. > 3).perl > nom 08ef94: OUTPUT«(2, 1).list␤» > * masak submits rakudobug > here

Re: [perl #98954] [BUG] Nested indexing semantics changed from Beijing to nom in Rakudo

2013-09-12 Thread Patrick R. Michaud
On Thu, Sep 12, 2013 at 11:48:02AM -0700, Carl Mäsak via RT wrote: > These days, it fails. > > rn: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. > 3).perl > niecza v24-95-ga6d4c5f: OUTPUT«(2, 1, Any, Any).list␤» > ..rakudo 69c3cc: OUTPUT«(2, 1, Failure.new(exception => > X::AdHoc.ne

[perl #119759] [BUG] Type dispatch problems when nesting in and inheriting from the same class in Rakudo

2013-09-12 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #119759] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=119759 > masak: https://github.com/masak/crypt/blob/master/t/hanoi.t#L5 - can you imagi

[perl #119763] Variable declaration with adverb throws internal error

2013-09-12 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #119763] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=119763 > moritz r: my $s :a camelia rakudo 69c3cc: OUTPUT«===SORRY!===␤invoke() not impleme

[perl #119751] [NYI] Rakudo bails out on 'constant \a' (but STD doesn't)

2013-09-12 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #119751] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=119751 > r: class B { constant \a = 3; }; say B::a rakudo 69c3cc: OUTPUT«===SORRY!=== Er

[perl #119749] [BUG] Null PMC access when looping over SomeEnum.enums in a blockless BEGIN in Rakudo

2013-09-12 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #119749] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=119749 > is it ok for this to crash? r: enum A (a=>3,b=>10,c=>1); class B { BEGIN for A.