stick the call to BUILDALL in ->meta->new_object, rather than ->new
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
index 0dd87c7..05da231 100644 (file)
@@ -275,6 +275,8 @@ sub new_object {
         );
     }
 
+    $self->BUILDALL($params) if $self->can('BUILDALL');
+
     return $self;
 }