On 10/2/07, Allison Randal <[EMAIL PROTECTED]> wrote:
>
> My goal was to wrap up the pdd15oo branch by the end of September. We're
> quite close. The two remaining big things are PGE and multiple dispatch,
> and then test cleanup. Thanks to chromatic and particle for their work
> on the tests.
>
> I've been giving chromatic small tasks to work on, which seems to be a
> good way of breaking out the load. Here are a few anyone could tackle:
>
> - Pick a directory and grep (or ack) for 'find_type'. It was a common
> idiom in the old object system that doesn't work any more. Change:
>
> $IX = find_type "ClassName"
> $PX = new $IX
>
> to:
>
> $PX = new "ClassName"



the first file I wanted to fix, t/stm/runtime.t, contains this:

    $I0 = find_type 'STMQueue'
    if $I0 goto done
    class = newclass 'STMQueue'

a check is done if the check exists. in the new system, how should this
check be done?

kjs

Reply via email to