- or download this
sub AUTOLOAD {
my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
...
goto($stub);
}
- or download this
sub AUTOLOAD {
my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
...
goto($code_ref);
}
- or download this
sub can {
my $p = shift(@_);
return UNVERSAL::can($p, @_) || File::Samba->can(@_);
}