X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=70ad475b6f010a27204e4db69ef6ac91673a8db4;hb=615d5d5fa75cb9c4d1445184b63dae565dcc790e;hp=e870e7890a1087488e069bd90e20943fc1cfdfe0;hpb=fb706f5c1e60ddafe873717be7209066d47b8998;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index e870e78..70ad475 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -12,11 +12,12 @@ sub new { my %args = @_; my $instance = bless {}, $class; - for my $attribute ($class->meta->attributes) { - my $key = $attribute->init_arg; + for my $attribute (values %{ $class->meta->get_attribute_map }) { + my $from = $attribute->init_arg; + my $key = $attribute->name; my $default; - if (!exists($args{$key})) { + if (!exists($args{$from})) { if ($attribute->has_default || $attribute->has_builder) { unless ($attribute->is_lazy) { my $default = $attribute->default; @@ -33,27 +34,27 @@ sub new { $instance->{$key} = $value; weaken($instance->{$key}) - if $attribute->weak_ref; + if ref($instance->{$key}) && $attribute->is_weak_ref; } } else { if ($attribute->is_required) { - confess "Attribute '".$attribute->name."' is required"; + confess "Attribute (".$attribute->name.") is required"; } } } - if (exists($args{$key})) { - $attribute->verify_type_constraint($args{$key}) + if (exists($args{$from})) { + $attribute->verify_type_constraint($args{$from}) if $attribute->has_type_constraint; - $instance->{$key} = $args{$key}; + $instance->{$key} = $args{$from}; weaken($instance->{$key}) - if $attribute->weak_ref; + if ref($instance->{$key}) && $attribute->is_weak_ref; if ($attribute->has_trigger) { - $attribute->trigger->($instance, $args{$key}, $attribute); + $attribute->trigger->($instance, $args{$from}, $attribute); } } }