No need for default to be a sub when it just returns a string.
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Class.pm
index 0a763a1..888d1ae 100644 (file)
@@ -7,7 +7,8 @@ use metaclass;
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints ();
 
-our $VERSION   = '0.02';
+our $VERSION   = '0.57';
+$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,
     );
 }