[perl #71066] [TODO] change :action to :actions in Grammar.parse calls in Rakudo

2009-12-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #71066] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71066 > the :action vs :actions was question PM-7 I see I made a change that goes against Pm-7

[perl #71064] [BUG] Declaring a postcircumfix:<{ }> method in a class causes ordinary hash accesses to be dispatched as that method

2009-12-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #71064] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71064 > rakudo: class A { method postcircumfix:<{ }>($x) { 42 }; method foo() { my %h; say %h }