in reply to Re: howto call an overridden sub
in thread howto call an overridden sub

Ok, I assume when you have multiple super classes, like
use base qw(A B C)
it will first try A, then B, etc!

Luca

Replies are listed 'Best First'.
Re^3: howto call an overridden sub
by salva (Canon) on Mar 27, 2006 at 10:47 UTC
    yes, it does a deep search on the hierarchy tree, so it first looks for the method in A, then in A parents, then in B, etc.