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