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=05b9c5f8c02b2188de5aab824aabfb222a7ffe50;hp=b5cd0b68caff2873aede937b64ebd7e2348e9b4b;hb=a25ca8d637c040b2f929b1a23dd62ff63d85f5d1;hpb=ffbbf459fec594dcd08b5f7d05014740390bde58 diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index b5cd0b6..05b9c5f 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -1,6 +1,5 @@ package Mouse::Meta::TypeConstraint; -use strict; -use warnings; +use Mouse::Util qw(:meta); # enables strict and warnings use overload '""' => sub { shift->{name} }, # stringify to tc name @@ -9,8 +8,6 @@ use overload use Carp qw(confess); use Scalar::Util qw(blessed reftype); -use Mouse::Util qw(:meta); - my $null_check = sub { 1 }; sub new { @@ -21,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){ @@ -253,6 +247,10 @@ __END__ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass +=head1 VERSION + +This document describes Mouse version 0.37_06 + =head1 DESCRIPTION For the most part, the only time you will ever encounter an