parameterized contstraints when subclassing should create a parameterizable constraint
John Napiorkowski [Fri, 24 Oct 2008 18:04:12 +0000 (18:04 +0000)]
lib/Moose/Meta/TypeConstraint/Parameterized.pm

index d7b78c2..e6b87d9 100644 (file)
@@ -6,6 +6,7 @@ use metaclass;
 
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints;
+use Moose::Meta::TypeConstraint::Parameterizable;
 
 our $VERSION   = '0.60';
 $VERSION = eval $VERSION;
@@ -58,7 +59,7 @@ sub compile_type_constraint {
 
 sub create_child_type {
     my ($self, %opts) = @_;
-    return Moose::Meta::TypeConstraint->new(%opts, parent => $self);
+    return Moose::Meta::TypeConstraint::Parameterizable->new(%opts, parent=>$self);
 }
 
 1;