X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FTypeConstraint.pm;h=b703f32f989bd9150e24504068443726001bb2c9;hb=26f0aa174f72fdf5fd803278212b7cefa83c8734;hp=f2319faae0ff69c84e50a2d7cf2488a2449eb69e;hpb=f6c81f00b84bc277a9151337f2a7cc275937f3b8;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index f2319fa..b703f32 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -7,7 +7,7 @@ sub new { $args{name} = '__ANON__' if !defined $args{name}; - if($args{parent}) { + if(defined $args{parent}) { %args = (%{$args{parent}}, %args); # a child type must not inherit 'compiled_type_constraint' # and 'hand_optimized_type_constraint' from the parent @@ -71,6 +71,11 @@ sub compile_type_constraint; sub _add_type_coercions { # ($self, @pairs) my $self = shift; + if(exists $self->{type_constraints}){ # union type + $self->throw_error( + "Cannot add additional type coercions to Union types '$self'"); + } + my $coercions = ($self->{coercion_map} ||= []); my %has = map{ $_->[0] => undef } @{$coercions}; @@ -89,14 +94,7 @@ sub _add_type_coercions { # ($self, @pairs) push @{$coercions}, [ $type => $action ]; } - # compile - if(exists $self->{type_constraints}){ # union type - $self->throw_error( - "Cannot add additional type coercions to Union types"); - } - else{ - $self->_compile_type_coercion(); - } + $self->_compile_type_coercion(); return; } @@ -143,14 +141,10 @@ sub _compile_union_type_coercion { sub coerce { my $self = shift; - - my $coercion = $self->_compiled_type_coercion; - if(!$coercion){ - $self->throw_error("Cannot coerce without a type coercion"); - } - return $_[0] if $self->check(@_); + my $coercion = $self->{_compiled_type_coercion} + or $self->throw_error("Cannot coerce without a type coercion"); return $coercion->(@_); } @@ -171,7 +165,7 @@ sub get_message { } } -sub is_a_type_of{ +sub is_a_type_of { my($self, $other) = @_; # ->is_a_type_of('__ANON__') is always false @@ -240,7 +234,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.73 +This document describes Mouse version 0.77 =head1 DESCRIPTION