[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. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=119749 poor_soul is it ok for this to crash? poor_soul r: enum A (a=3,b=10,c=1);

[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. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=119751 jnthn r: class B { constant \a = 3; }; say B::a camelia rakudo 69c3cc:

[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. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=119763 moritz r: my $s :a camelia rakudo 69c3cc: OUTPUT«===SORRY!===␤invoke() not

[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. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=119759 timotimo masak: https://github.com/masak/crypt/blob/master/t/hanoi.t#L5 -

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. masak rn: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. 3).perl camelia niecza v24-95-ga6d4c5f: OUTPUT«(2, 1, Any, Any).list␤» camelia ..rakudo 69c3cc: OUTPUT«(2, 1, Failure.new(exception =

[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: masak b: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. 3).perl p6eval b 1b7dd1: OUTPUT«(2, 1, Any, Any)␤» masak nom: my @a = [1], [2], [3]; say (map { @a[1 - $_][0] }, 0 .. 3).perl p6eval nom 08ef94: OUTPUT«(2, 1).list␤» * masak submits