X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FTypeConstraint.pm;h=c73fa892dc5c961a4bfcb0b5de22d84d30c35da5;hb=559f35335d5ddba6baeff5a8a50c0d67a3297c87;hp=b3706ef2941c204c662c4401d477b68e99089af6;hpb=1746908e63ce233fad3c290d731ac34aff7c2d22;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index b3706ef..c73fa89 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -102,8 +102,8 @@ sub _add_type_coercions { # ($self, @pairs) "Cannot add additional type coercions to Union types '$self'"); } - my $coercions = ($self->{coercion_map} ||= []); - my %has = map{ $_->[0] => undef } @{$coercions}; + my $coercion_map = ($self->{coercion_map} ||= []); + my %has = map{ $_->[0]->name => undef } @{$coercion_map}; for(my $i = 0; $i < @_; $i++){ my $from = $_[ $i]; @@ -117,7 +117,7 @@ sub _add_type_coercions { # ($self, @pairs) or $self->throw_error( "Could not find the type constraint ($from) to coerce from"); - push @{$coercions}, [ $type => $action ]; + push @{$coercion_map}, [ $type => $action ]; } $self->_compile_type_coercion(); @@ -127,13 +127,17 @@ sub _add_type_coercions { # ($self, @pairs) sub _compile_type_coercion { my($self) = @_; - my @coercions = @{$self->{coercion_map}}; + my @coercions; + + foreach my $pair(@{$self->{coercion_map}}) { + push @coercions, [ $pair->[0]->_compiled_type_constraint, $pair->[1] ]; + } $self->{_compiled_type_coercion} = sub { my($thing) = @_; foreach my $pair (@coercions) { #my ($constraint, $converter) = @$pair; - if ($pair->[0]->check($thing)) { + if ($pair->[0]->($thing)) { local $_ = $thing; return $pair->[1]->($thing); } @@ -262,7 +266,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.85 +This document describes Mouse version 0.86 =head1 DESCRIPTION