[perl #78208] [BUG] Numifying a Method returns number of multi candidates in Rakudo

2010-10-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78208] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78208 > rakudo: say +Method rakudo 2ee5db: OUTPUT«0␤» that seems completely bogus to me it p

[perl #78206] [BUG] Attribute isn't Cool in Rakudo

2010-10-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78206] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78206 > rakudo: class crap { has $.snot = "barf"; has $.eat = "me" }; my $c = crap.new(); for $

[perl #73740] tests available

2010-10-04 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in S10-packages/basic.t commit 0676d53e767cc083be9bf534266ec6ab9e60e479 Author: Moritz Lenz Date: Mon Oct 4 21:34:08 2010 +0200 mark a test for RT #73740 diff --git a/S10-packages/basic.t b/S10-packages/ba

[perl #78200] [BUG] LTA error message when using attributes on type objects

2010-10-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78200] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78200 > >From the backlog: well I just spent a miserable two hours figuring out that the error

[perl #78202] [BUG] Rakudo treats ' #' after interpolated variable as whitespace (whereas STD.pm6 doesn't)

2010-10-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78202] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78202 > rakudo: sub Good ($time) { say "Good $time #perl6." }; Good now # discovered by tylercu

Re: [perl #78112] [BUG] Null PMC access when using placeholder parameter in rhs of attribute assignment in class declaration in Rakudo

2010-10-04 Thread Carl Mäsak
John (>): > std seems to complain that the placeholder variables are not valid here. > Maybe we need more clarification on whether this should work or not. I'm fine with it being forbidden in this case. The ticket concerns the presence of a Null PMC Access, which is always an error by virtue of be

[perl #78204] [BUG] Null PMC access when calling $.foo in the mainline code of the class being defined in Rakudo

2010-10-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78204] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78204 > rakudo: class A { is $.foo }; say A.new # via colomon's