X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FRole%2FApplication%2FToRole.pm;h=db760aa1e6502831fbf8a84ef796e44a0c2ae536;hb=refs%2Ftags%2F1.12;hp=150def96633826bdbbab8fdf57e90bdeb424f998;hpb=094b50c0f630bf7ec93e598b50637ca38c99d474;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Role/Application/ToRole.pm b/lib/Moose/Meta/Role/Application/ToRole.pm index 150def9..db760aa 100644 --- a/lib/Moose/Meta/Role/Application/ToRole.pm +++ b/lib/Moose/Meta/Role/Application/ToRole.pm @@ -6,7 +6,7 @@ use metaclass; use Scalar::Util 'blessed'; -our $VERSION = '0.89_01'; +our $VERSION = '1.12'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -63,59 +63,65 @@ sub apply_attributes { } else { $role2->add_attribute( - $attribute_name, - $role1->get_attribute($attribute_name) + $role1->get_attribute($attribute_name)->clone ); } } } sub apply_methods { - my ($self, $role1, $role2) = @_; - foreach my $method_name ($role1->get_method_list) { + my ( $self, $role1, $role2 ) = @_; + foreach my $method ( $role1->_get_local_methods ) { - if ($self->is_method_aliased($method_name)) { - my $aliased_method_name = $self->get_method_aliases->{$method_name}; + my $method_name = $method->name; - if ($role2->has_method($aliased_method_name) && - $role2->get_method($aliased_method_name)->body != $role1->get_method($method_name)->body) { + next if $method_name eq 'meta'; - require Moose; - Moose->throw_error("Cannot create a method alias if a local method of the same name exists"); - } + unless ( $self->is_method_excluded($method_name) ) { - $role2->add_method( - $aliased_method_name, - $role1->get_method($method_name) - ); + my $role2_method = $role2->get_method($method_name); + if ( $role2_method + && $role2_method->body != $method->body ) { - if (!$role2->has_method($method_name)) { - $role2->add_required_methods($method_name) - unless $self->is_method_excluded($method_name); + # method conflicts between roles result in the method becoming + # a requirement + $role2->add_conflicting_method( + name => $method_name, + roles => [ $role1->name, $role2->name ], + ); + } + else { + $role2->add_method( + $method_name, + $method, + ); } - - next; } - next if $self->is_method_excluded($method_name); + next unless $self->is_method_aliased($method_name); + + my $aliased_method_name = $self->get_method_aliases->{$method_name}; + + my $role2_method = $role2->get_method($aliased_method_name); - if ($role2->has_method($method_name) && - $role2->get_method($method_name)->body != $role1->get_method($method_name)->body) { - # method conflicts between roles result - # in the method becoming a requirement - $role2->add_conflicting_method( - name => $method_name, - roles => [$role1->name, $role2->name], + if ( $role2_method + && $role2_method->body != $method->body ) { + + require Moose; + Moose->throw_error( + "Cannot create a method alias if a local method of the same name exists" ); } - else { - $role2->add_method( - $method_name, - $role1->get_method($method_name) - ); - } + $role2->add_method( + $aliased_method_name, + $role1->get_method($method_name) + ); + if ( !$role2->has_method($method_name) ) { + $role2->add_required_methods($method_name) + unless $self->is_method_excluded($method_name); + } } } @@ -210,9 +216,7 @@ Moose::Meta::Role::Application::ToRole - Compose a role into another role =head1 BUGS -All complex software has bugs lurking in it, and this module is no -exception. If you find a bug please either email me, or add the bug -to cpan-RT. +See L for details on reporting bugs. =head1 AUTHOR @@ -220,7 +224,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006-2009 by Infinity Interactive, Inc. +Copyright 2006-2010 by Infinity Interactive, Inc. L