Posted on 2009-04-20 23:43:16-07 by stvn in response to 10504
Re: Call super from moose object
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.
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.