The default maxdepth of 'dump' method is now 3, instead of 2.
gfx [Mon, 8 Feb 2010 04:40:53 +0000 (13:40 +0900)]
lib/Mouse/Util.pm

index 4908863..b7ab693 100644 (file)
@@ -344,7 +344,7 @@ sub dump :method {
 
     require 'Data/Dumper.pm'; # we don't want to create its namespace
     my $dd = Data::Dumper->new([$self]);
-    $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 2);
+    $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 3);
     $dd->Indent(1);
     return $dd->Dump();
 }