in reply to Overriding several methods using 'local'

Yeah, more context is needed to be sure. But just to toss out another idea: could you perhaps convert things to method calls rather than subroutines? Then you could just change the (global) instance on which things are making calls and get the changed behavior. If you can't change things in place you might could make abc a wrapper which does the dispatch to the correct method behind the scenes.

Replies are listed 'Best First'.
Re^2: Overriding several methods using 'local'
by dmitri (Priest) on May 22, 2006 at 16:10 UTC
    All of those are methods. I apologize if it wasn't clear from the original post. Update is now posted.