in reply to Re^2: Dynamically wrapping ancestor method callsin thread Dynamically wrapping ancestor method calls
sub can { my $self = shift; ${ $self }->can( @_ ) } sub isa { my $self = shift; ${ $self }->isa( @_ ); } [download]