You can either use the standard perl approach of
sub method {
my $self = shift;
....
$self->SUPER::method( @args );
}
or you can use the one of the method modifier features of Moose which is discussed in Moose::Manual::MethodModifiers or in the recipe form in Moose::Cookbook::Basics::Recipe1.