From: Dave Rolsky Date: Sun, 10 Oct 2010 16:31:24 +0000 (-0400) Subject: Clarify passing @_ to parent BUILDARGS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=56f41d93181d88d8a00def5c08269130e2e37fc6;p=gitmo%2Fmoose-presentations.git Clarify passing @_ to parent BUILDARGS --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index ff7b8ab..a6cd0be 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -897,6 +897,7 @@ use Moose;
  • Accepts a hash or hashref; errors otherwise
  • Provide your own for other cases
  • Always call $class->SUPER::BUILDARGS(@_) as a fallback!
  • +
  • Make sure to pass the original value of @_ to the parent