X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FObject.pm;h=56eaff4d34d568ab835a78e7bc4fdadce44fee4b;hb=3492a4cd521f7564ae3982a499c9161c3cf94c69;hp=7fc09a78741a219e29b5b5e090b91e9f4d58fc45;hpb=7bec196c5513eab13177370e65889ac9af4489de;p=gitmo%2FMoose.git diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 7fc09a7..56eaff4 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -9,7 +9,7 @@ use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class'; use Carp 'confess'; -our $VERSION = '0.50'; +our $VERSION = '0.56'; our $AUTHORITY = 'cpan:STEVAN'; sub new { @@ -22,16 +22,17 @@ sub new { sub BUILDARGS { my $class = shift; - if (scalar @_ == 1) { if (defined $_[0]) { (ref($_[0]) eq 'HASH') || confess "Single parameters to new() must be a HASH ref"; return {%{$_[0]}}; + } + else { + return {}; # FIXME this is compat behavior, but is it correct? } - - return {}; # FIXME this is compat behavior, but is it correct? - } else { + } + else { return {@_}; } } @@ -72,6 +73,16 @@ 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 sub does { @@ -155,6 +166,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: