Help for this page

Select Code to Download


  1. or download this
    sub mylol {
      my $self=shift;
    ...
        $lol = super();
      }
    }
    
  2. or download this
    sub mylol {
        my $self = shift;
    ...
        super();
        # $self->{data} is restored here
    };
    
  3. or download this
    package Moose;
    ...
    ...
        return if defined $SUPER_PACKAGE && $SUPER_PACKAGE ne caller();
        return unless $SUPER_BODY; $SUPER_BODY->(@SUPER_ARGS);
    }