Help for this page
sub Call { my $self = shift; ... $self->Trace(_CallerStr($it)); return $it; };
our $AUTOLOAD; # needs to be a package global sub AUTOLOAD { ... splice @_, 1, 0, $AUTOLOAD; # package/object, method, rest of args goto \&Call; }