[perl #75386] [BUG] Rakudo doesn't implement 'handles' (but used to)

2010-06-21 Thread jn...@jnthn.net via RT
On Thu May 27 10:52:50 2010, masak wrote: > rakudo: class A { has @.contents handles }; say > A.new(:contents(1, 2, 3)).elems > rakudo e40ee4: OUTPUT«1␤» > * masak submits rakudobug > masak: handles nyi > it used to be i :( > hm, perhaps an example with a method not already in Any would > be

[perl #75386] [BUG] Rakudo doesn't implement 'handles' (but used to)

2010-06-20 Thread jn...@jnthn.net via RT
On Sat Jun 12 13:42:18 2010, maard wrote: > created during today's hackmeet with Jonathan Worthington. > attached patch (including handles2.t) partially solves the problem (by > adding add_handles_method method to the core). current problem is: it > seems that handler attributes don't get passed to

[perl #75386] [BUG] Rakudo doesn't implement 'handles' (but used to)

2010-05-28 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75386] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75386 > rakudo: class A { has @.contents handles }; say A.new(:contents(1, 2, 3)).elems rakud