Help for this page

Select Code to Download


  1. or download this
    Class::method($self); # called as a subroutine
    $self->method;        # called as a method
    
  2. or download this
    use Devel::Caller qw(called_as_method);
    
    ...
       croak "I am an instance method" unless called_as_method(0);
       # actual body of code
    }