X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FObject.pm;h=4e967f66552ee0178a3f608551833d1d3e88ad0a;hb=aead17e74252e3884f9f8e39912ca98fdf4b4dd5;hp=15a6536c346357fe46beaa769937ca3ef67e044c;hpb=aa7472be179ab723bb3ef9d34c2120fd6908d964;p=gitmo%2FMoose.git diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 15a6536..4e967f6 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -7,32 +7,31 @@ use warnings; use if ( not our $__mx_is_compiled ), 'Moose::Meta::Class'; use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class'; -use Carp 'confess'; - -our $VERSION = '0.50'; +our $VERSION = '0.62'; +$VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; sub new { my $class = shift; my $params = $class->BUILDARGS(@_); - my $self = $class->meta->new_object(%$params); + my $self = $class->meta->new_object($params); $self->BUILDALL($params); return $self; } sub BUILDARGS { my $class = shift; - if (scalar @_ == 1) { if (defined $_[0]) { - no warnings 'uninitialized'; (ref($_[0]) eq 'HASH') - || confess "Single parameters to new() must be a HASH ref"; + || $class->meta->throw_error("Single parameters to new() must be a HASH ref", data => $_[0]); return {%{$_[0]}}; - } else { + } + else { return {}; # FIXME this is compat behavior, but is it correct? } - } else { + } + else { return {@_}; } } @@ -73,13 +72,23 @@ sub DESTROY { $_[0]->DEMOLISHALL; } +# support for UNIVERSAL::DOES ... +BEGIN { + my $does = UNIVERSAL->can("DOES") ? "SUPER::DOES" : "isa"; + eval 'sub DOES { + my ( $self, $class_or_role_name ) = @_; + return $self->'.$does.'($class_or_role_name) + || $self->does($class_or_role_name); + }'; +} + # new does() methods will be created -# as approiate see Moose::Meta::Role +# as appropiate see Moose::Meta::Role sub does { my ($self, $role_name) = @_; - (defined $role_name) - || confess "You must supply a role name to does()"; my $meta = $self->meta; + (defined $role_name) + || $meta->throw_error("You much supply a role name to does()"); foreach my $class ($meta->class_precedence_list) { my $m = $meta->initialize($class); return 1 @@ -156,6 +165,12 @@ This will call every C method in the inheritance hierarchy. This will check if the invocant's class C a given C<$role_name>. This is similar to C for object, but it checks the roles instead. +=item B + +A Moose Role aware implementation of L. + +C is equivalent to C or C. + =item B Cmon, how many times have you written the following code while debugging: