On 3 Jan 2008, at 16:55, Ovid wrote:
 my $super = __PACKAGE__->can("SUPER::$sub") or die;

This is OO code and that should actually read:

 my $super = __PACKAGE__->can($sub) or die;

Should that be __PACKAGE__->SUPER::can($sub) ?

--
Andy Armstrong, Hexten




Reply via email to