t/pugs/operator/arith.t

2008-05-01 Thread Patrick R. Michaud
Jesse asked about getting t/pugs/operator/arith.t to run on Rakudo, as written arith.t depends on the ".nextwith" capability from S06. For example: sub tryok ($ok, $todo) { if ($todo) { &ok.nextwith($ok,$todo, :todo); } else { &ok.nextwith($ok); } } I'm

Re: [perl #53298] [BUG] inheritance not working?

2008-05-01 Thread Jonathan Worthington
Hi, dakkar (via RT) wrote: If I uncomment the $u.boo after the re-assignment to $u, I get a "Null PMC access in get_string()" It looks like inheritance is not working as I'd expect. To make it "work", I have to move the 'set' method into Foo, and remove all references to Bar. Thanks for rep