bump version and update changes for next release
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Class.pm
index 0a763a1..c2f1e67 100644 (file)
@@ -7,7 +7,8 @@ use metaclass;
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints ();
 
-our $VERSION   = '0.02';
+our $VERSION   = '0.67';
+$VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Moose::Meta::TypeConstraint';
@@ -19,9 +20,8 @@ __PACKAGE__->meta->add_attribute('class' => (
 sub new {
     my ( $class, %args ) = @_;
 
-    $args{class}  = $args{name} unless exists $args{class};
     $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
-    my $self      = $class->meta->new_object(%args);
+    my $self      = $class->_new(\%args);
 
     $self->_create_hand_optimized_type_constraint;
     $self->compile_type_constraint();
@@ -51,7 +51,7 @@ sub parents {
             # regardless of their name
             Moose::Util::TypeConstraints::find_type_constraint($_) 
                 || 
-            __PACKAGE__->new( name => $_ )
+            __PACKAGE__->new( class => $_, name => "__ANON__" )
         } $self->class->meta->superclasses,
     );
 }
@@ -61,6 +61,7 @@ sub equals {
 
     my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
 
+    return unless defined $other;
     return unless $other->isa(__PACKAGE__);
 
     return $self->class eq $other->class;
@@ -83,6 +84,8 @@ sub is_subtype_of {
     }
 
     my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_class);
+    
+    return unless defined $type;
 
     if ( $type->isa(__PACKAGE__) ) {
         # if $type_or_name_or_class isn't a class, it might be the TC name of another ::Class type
@@ -94,6 +97,15 @@ sub is_subtype_of {
     }
 }
 
+# This is a bit counter-intuitive, but a child type of a Class type
+# constraint is not itself a Class type constraint (it has no class
+# attribute). This whole create_child_type thing needs some changing
+# though, probably making MMC->new a factory or something.
+sub create_child_type {
+    my ($self, @args) = @_;
+    return Moose::Meta::TypeConstraint->new(@args, parent => $self);
+}
+
 1;
 
 __END__
@@ -128,6 +140,8 @@ Return all the parent types, corresponding to the parent classes.
 
 =item B<meta>
 
+=item B<create_child_type>
+
 =back
 
 =head1 BUGS
@@ -142,7 +156,7 @@ Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006-2008 by Infinity Interactive, Inc.
+Copyright 2006-2009 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>