http://www.perlmonks.org?node_id=916040


in reply to Re: You cannot pass args when calling inner() in Moose?
in thread You cannot pass args when calling inner() in Moose?

This is not actually working, it only appears to work because you are passing a value from @_ into inner(), which it already gets passed anyway. inner() does not accept arguments, same as super().

-stvn
  • Comment on Re^2: You cannot pass args when calling inner() in Moose?

Replies are listed 'Best First'.
Re^3: You cannot pass args when calling inner() in Moose?
by Arunbear (Prior) on Jul 22, 2011 at 11:02 UTC
    Fair enough, thanks for clarifying that.