Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
       my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
    ...
       
       goto($code_ref);
    }
    
  2. or download this
    sub AUTOLOAD {
       my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
    ...
    
       goto($stub);
    }