[perl #98868] accessing private method from outside class gives LTA Perl6::Metamodel error

2011-09-11 Thread via RT
# New Ticket Created by Paweł Pabian # Please include the string: [perl #98868] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=98868 > 10:37 bbkr nom: class A { method !private { say "p" } }; my $a = A.new; $a!privat

[perl #65120] [PATCH] Consistent semantics for slurp and lines subs

2011-09-11 Thread Ron Schmidt via RT
> Thanks for the patch ... unfortunately, this patch no longer cleanly > applies. Can you rebase > and re-submit? I'll leave the ticket open for a little while. > > Regards. I don't know how long this has been true, but at this point $*IO.slurp and $fh.slurp work and that seems good enough. Pro

[perl #98856] [BUG] Internal imcc error when trying to redeclare a class over a package in Rakudo

2011-09-11 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #98856] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=98856 > nom: module Foo { }; class Foo { } nom 6dbbf3: OUTPUT«===SORRY!===␤Illegal redecl

[perl #95500] [BUG] Subtype based on any(@array) always matches in Rakudo

2011-09-11 Thread Carl Mäsak via RT
On Sun Jul 24 02:17:20 2011, masak wrote: > I found a bug. :) > rakudo: subset Foo of Str where any(); for NOES> { when Foo { say "$_ is a Foo" } } # this is fine > rakudo 922500: OUTPUT«foo is a Foo␤» > rakudo: my @strings = ; subset Foo of Str where > any(@strings); for { when Foo { say "$_

[perl #98854] [BUG] |$ in a signature causes a parsefail in Rakudo

2011-09-11 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #98854] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=98854 > rakudo: class InstanceMethod { has $.instance; has $.methodname; method postcircum