X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FClass.pm;h=765def82ec50fe707fcb1d682375c3c5cb16afc3;hp=45297bc1da1ff4d0db0db8d2a36d09a7b7841422;hb=8cf51b82d94aad02f81dc853be874e9a49a82c31;hpb=ad087d1140e1f90a85f2f47cc05bd648fb4ea38e diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 45297bc..765def8 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -104,6 +104,7 @@ sub add_attribute { if ($name =~ s/^\+//) { # inherited attributes my $inherited_attr; + # find_attribute_by_name foreach my $class($self->linearized_isa){ my $meta = Mouse::Util::get_metaclass_by_name($class) or next; $inherited_attr = $meta->get_attribute($name) and last; @@ -112,10 +113,10 @@ sub add_attribute { defined($inherited_attr) or $self->throw_error("Could not find an attribute by the name of '$name' to inherit from in ".$self->name); - $attr = $inherited_attr->clone_and_inherit_options($name, \%args); + $attr = $inherited_attr->clone_and_inherit_options(%args); } else{ - my($attribute_class, @traits) = $self->attribute_metaclass->interpolate_class($name, \%args); + my($attribute_class, @traits) = $self->attribute_metaclass->interpolate_class(\%args); $args{traits} = \@traits if @traits; $attr = $attribute_class->new($name, %args);