Revision history for Perl extension Moose
-0.38
+0.39
+ * Moose::Meta::Attribute
+ - fix handles so that it doesn't return nothing
+ when the method cannot be found, not sure why
+ it ever did this originally
+
+0.38 Fri. Feb. 15, 2008
* Moose::Meta::Attribute
- fixed initializer to correctly do
type checking and coercion in the
* t/
- fixed some finicky tests (thanks to konobi)
-0.37 Thurs. Fri. 14, 2008
+0.37 Thurs. Feb. 14, 2008
* Moose
- fixed some details in Moose::init_meta
and its superclass handling (thanks thepler)
use Sub::Name 'subname';
use overload ();
-our $VERSION = '0.21';
+our $VERSION = '0.22';
our $AUTHORITY = 'cpan:STEVAN';
use Moose::Meta::Method::Accessor;
(defined $proxy)
|| confess "Cannot delegate $handle to $method_to_call because " .
"the value of " . $self->name . " is not defined";
- goto &{ $proxy->can($method_to_call) || return };
+ $proxy->$method_to_call;
});
}
}