X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FTypeConstraint.pm;h=2593b8250a3bb7bf64636b1fc0679d1f3163d9f1;hp=8c07a75536b32632f712b8f94a7ee45a1af9f5b7;hb=de0d4152ac07ed26a928841729e97366187b2915;hpb=8aba926dbf11e9cf418c7c79b925d15e60e1e990 diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 8c07a75..2593b82 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -24,13 +24,6 @@ sub new { my $check = delete $args{optimized}; - if($args{_compiled_type_constraint}){ - Carp::cluck("'_compiled_type_constraint' has been deprecated, use 'optimized' instead") - if Mouse::Util::_MOUSE_VERBOSE; - - $check = $args{_compiled_type_constraint}; - } - if($check){ $args{hand_optimized_type_constraint} = $check; $args{compiled_type_constraint} = $check; @@ -88,6 +81,15 @@ sub create_child_type{ ); } +sub name; +sub parent; +sub message; +sub has_coercion; +sub _compiled_type_constraint; +sub _compiled_type_coercion; + +sub compile_type_constraint; + sub _add_type_coercions{ my $self = shift; @@ -114,15 +116,15 @@ sub _add_type_coercions{ } else{ $self->{_compiled_type_coercion} = sub { - my($thing) = @_; - foreach my $pair (@{$coercions}) { - #my ($constraint, $converter) = @$pair; - if ($pair->[0]->check($thing)) { + my($thing) = @_; + foreach my $pair (@{$coercions}) { + #my ($constraint, $converter) = @$pair; + if ($pair->[0]->check($thing)) { local $_ = $thing; return $pair->[1]->($thing); - } - } - return $thing; + } + } + return $thing; }; } return; @@ -136,10 +138,14 @@ sub check { sub coerce { my $self = shift; + my $coercion = $self->_compiled_type_coercion; + if(!$coercion){ + Carp::confess("Cannot coerce without a type coercion"); + } + return $_[0] if $self->_compiled_type_constraint->(@_); - my $coercion = $self->_compiled_type_coercion; - return $coercion ? $coercion->(@_) : $_[0]; + return $coercion->(@_); } sub get_message { @@ -210,7 +216,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.40_07 +This document describes Mouse version 0.49 =head1 DESCRIPTION