in reply to Re: Re: OO: All Methods
in thread OO: All Methods
You might want to double-check that the expected methods are being installed as you expect. You could add a logging install_methods in your subclass:
sub install_methods { my ($class, %methods) = @_; my $target = $class->find_target_class; my $methods = join ', ', keys %methods; warn "Installing $methods in $target\n"; $class->SUPER::install_methods( %methods ); }
|
|---|