Comment out 'does'
gfx [Fri, 25 Sep 2009 12:26:48 +0000 (21:26 +0900)]
lib/Mouse/Meta/Attribute.pm

index 7d6d68e..4feac11 100644 (file)
@@ -72,7 +72,8 @@ sub _process_options{
         $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($args->{isa});
     }
     elsif(exists $args->{does}){
-        $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
+        # TODO
+        # $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
     }
     $tc = $args->{type_constraint};