[perl #31143] [TODO] Interpreter - share MMD tables

2008-10-30 Thread Allison Randal via RT
On Wed Oct 15 17:48:28 2008, Whiteknight wrote: With the pdd27mmd branch merged in now, what's the status of this request? The MMD table is now just a namespace, and namespaces are shareable between interpreters. So, resolved. Allison

[perl #60218] [PATCH] P6object.new_class 'hll' option is ignored

2008-10-30 Thread via RT
# New Ticket Created by Chris Dolan # Please include the string: [perl #60218] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60218 While reading code, I noticed that the implementation of P6object.new_class

Re: [perl #60178] Commit r32189 breaks Parrot on Mac OS X 10.5.4

2008-10-30 Thread Carl Mäsak
Is there anything else I can do to help track down the bug? To get Parrot to compile, I can still use the trick of downdating src/multidispatch.c to r32188, but this gives me 7 failing tests, not surprizingly.

[perl #60206] [BUG] [MMD] Segfault in Lua exception handler

2008-10-30 Thread via RT
# New Ticket Created by Allison Randal # Please include the string: [perl #60206] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60206 Original Message Subject: Re: Segfault in Lua exception handler

Known Bug in Rakudo?

2008-10-30 Thread Ovid
This code: class Point { has $.x is rw; has $.y is rw; method get_string () { return $.x, $.y; } } my Point $point .= new( :x1.2, :y-3.7 ); say $point.x; say $point; Generates this output: 1.2 get_string() not implemented in class 'Point'

Re: Known Bug in Rakudo?

2008-10-30 Thread Moritz Lenz
Ovid wrote: This code: class Point { has $.x is rw; has $.y is rw; method get_string () { The correct way to define user-defined stringfication is either through method Str { ... } or method prefix:~ ($self: ) { ... } (afaict both are not implemented in Rakudo

Re: Known Bug in Rakudo?

2008-10-30 Thread Mark J. Reed
On Thu, Oct 30, 2008 at 12:46 PM, Moritz Lenz [EMAIL PROTECTED] wrote: The correct way to define user-defined stringfication is either through method Str { ... } or method prefix:~ ($self: ) { ... } (afaict both are not implemented in Rakudo yet) Yeah, I can't even declare a method that

Re: Known Bug in Rakudo?

2008-10-30 Thread Patrick R. Michaud
On Thu, Oct 30, 2008 at 05:46:11PM +0100, Moritz Lenz wrote: I think that every class should have a default stringification. Dunno if there's a ticket for it yet. I don't think there's a _spec_ for a default stringification yet. So we should probably propose that first, and then see about

Re: Known Bug in Rakudo?

2008-10-30 Thread Moritz Lenz
Patrick R. Michaud wrote: On Thu, Oct 30, 2008 at 05:46:11PM +0100, Moritz Lenz wrote: I think that every class should have a default stringification. Dunno if there's a ticket for it yet. I don't think there's a _spec_ for a default stringification yet. So we should probably propose