joseoliv
6/22/2018 - 1:45 AM

Metaobject callRunMethods

Metaobject callRunMethods

package metaobjectTest


@doc{*
    produces code that calls all methods called 'run' of 
    all prototypes of the current package except method 'run'
    of the current prototype.
*}
object CallRunMethods

    func run {
        @callRunMethods
    }

end