in reply to Re^2: Dynamically wrapping ancestor method calls
in thread Dynamically wrapping ancestor method calls

sub can { my $self = shift; ${ $self }->can( @_ ) } sub isa { my $self = shift; ${ $self }->isa( @_ ); }