Re: [perl #22745] [PATCH] Parrot subroutines

2003-06-20 Thread Matt Fowles
All~ Jonathan Sillito wrote: The patch looks pretty good to me. Here is a proposal for an alternative inheritance hierarchy. Invocable, the root of the hierarchy, is basically a sub that is not a closure (i.e. *no* context at all, just an address). pmclass Invocable { # I called this sublite befor

RE: [perl #22745] [PATCH] Parrot subroutines

2003-06-20 Thread Jonathan Sillito
The patch looks pretty good to me. Here is a proposal for an alternative inheritance hierarchy. Invocable, the root of the hierarchy, is basically a sub that is not a closure (i.e. *no* context at all, just an address). pmclass Invocable { # I called this sublite before /* SELF->data is always N

[perl #22745] [PATCH] Parrot subroutines

2003-06-20 Thread via RT
# New Ticket Created by Leopold Toetsch # Please include the string: [perl #22745] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt2/Ticket/Display.html?id=22745 > Attached is a first try to unify the various sub types, structures and classes. - s