s/childtype/child_type/g - why ignore every naming standard already in use in the...
Dave Rolsky [Thu, 23 Oct 2008 16:16:52 +0000 (16:16 +0000)]
lib/Moose/Meta/TypeConstraint.pm
lib/Moose/Meta/TypeConstraint/Parameterized.pm
lib/Moose/Meta/TypeConstraint/Union.pm
lib/Moose/Util/TypeConstraints.pm

index 05a3f44..c301eba 100644 (file)
@@ -246,7 +246,7 @@ sub _collect_all_parents {
     return @parents;
 }
 
-sub create_childtype {
+sub create_child_type {
     my ($self, %opts) = @_;
     my $class = ref $self;
     return $class->new(%opts, parent => $self);
@@ -353,7 +353,7 @@ Returns true if this type has a parent type.
 
 =item B<has_hand_optimized_type_constraint>
 
-=item B<create_childtype>
+=item B<create_child_type>
 
 =back
 
index 668a9db..9300d7a 100644 (file)
@@ -56,7 +56,7 @@ sub compile_type_constraint {
           . $self->parent->name . " doesn't subtype or coerce from a parameterizable type.");
 }
 
-sub create_childtype {
+sub create_child_type {
     my ($self, %opts) = @_;
     return Moose::Meta::TypeConstraint->new(%opts, parent => $self);
 }
@@ -86,7 +86,7 @@ Moose::Meta::TypeConstraint::Parameterized - Higher Order type constraints for M
 
 =item B<equals>
 
-=item B<create_childtype>
+=item B<create_child_type>
 
 =back
 
index c9d3f42..a96a576 100644 (file)
@@ -100,7 +100,7 @@ sub is_subtype_of {
     return 0;
 }
 
-sub create_childtype {
+sub create_child_type {
     my ($self, %opts) = @_;
     my $class = ref $self;
     my $constraint = Moose::Meta::TypeConstraint->new(%opts, parent => $self);
@@ -204,7 +204,7 @@ anyway. They are here for completeness.
 
 =item B<has_hand_optimized_type_constraint>
 
-=item B<create_childtype>
+=item B<create_child_type>
 
 =back
 
index d361872..15c1220 100644 (file)
@@ -398,7 +398,7 @@ sub _create_type_constraint ($$$;$$) {
     ) {
         ## creating the child is a job we delegate to the parent, since each
         ## parent may have local customization needs to influence it's child.
-        $constraint = $parent->create_childtype(%opts);
+        $constraint = $parent->create_child_type(%opts);
     } else {
         ## If for some reason the above couldn't create a type constraint, let's
         ## make sure to create something.