Revision history for Mouse
0.13
+ * Pass in the instance to the default sub in the constructor (reported with
+ failing tests by rjbs)
0.12 Thu Dec 4 19:23:10 2008
* Provide Test::Exception function unless it's version 0.27 - RT #41254
my $value = $attribute->has_builder
? $instance->$builder
: ref($default) eq 'CODE'
- ? $default->()
+ ? $default->($instance)
: $default;
$attribute->verify_type_constraint($value)