X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FTypeConstraint.pm;h=9dd67dbc134f65e1a67f6ef684fc457327d81b74;hb=1372fcc0864d73696fe1b926d489b455be26229e;hp=9ba41fe0e5506189a2076a0707ece098257040e7;hpb=bc69ee88207ce5c53f5c02dbd44cfabfbe6bae70;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 9ba41fe..9dd67db 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -18,13 +18,10 @@ sub new { my $check = delete $args{optimized}; if($args{_compiled_type_constraint}){ - Carp::cluck("'_compiled_type_constraint' has been deprecated, use 'optimized' instead"); - $check = $args{_compiled_type_constraint}; + Carp::cluck("'_compiled_type_constraint' has been deprecated, use 'optimized' instead") + if _MOUSE_VERBOSE; - if(blessed($check)){ - Carp::cluck("Constraint must be a CODE reference"); - $check = $check->{compiled_type_constraint}; - } + $check = $args{_compiled_type_constraint}; } if($check){ @@ -250,6 +247,10 @@ __END__ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass +=head1 VERSION + +This document describes Mouse version 0.39 + =head1 DESCRIPTION For the most part, the only time you will ever encounter an