Sort the keys in %handles when making delegation methods
Dave Rolsky [Thu, 16 Jun 2011 15:34:21 +0000 (10:34 -0500)]
This makes it easier to find a given generated method when dumping the generated source

lib/Moose/Meta/Attribute.pm

index ed87709..c7d6ac0 100644 (file)
@@ -961,7 +961,7 @@ sub install_delegation {
 
     # install the delegation ...
     my $associated_class = $self->associated_class;
-    foreach my $handle (keys %handles) {
+    foreach my $handle (sort keys %handles) {
         my $method_to_call = $handles{$handle};
         my $class_name = $associated_class->name;
         my $name = "${class_name}::${handle}";