Fix has()
gfx [Thu, 3 Dec 2009 04:11:17 +0000 (13:11 +0900)]
lib/Mouse.pm
lib/Mouse/Role.pm

index 4449900..06a13a4 100644 (file)
@@ -54,7 +54,7 @@ sub has {
         }
     }
     else{ # has foo => (...)
-        $meta->add_attribute($_ => @_);
+        $meta->add_attribute($name => @_);
     }
     return;
 }
index 56b90b7..81208d5 100644 (file)
@@ -49,7 +49,7 @@ sub has {
         }
     }
     else{ # has foo => (...)
-        $meta->add_attribute($_ => @_);
+        $meta->add_attribute($name => @_);
     }
     return;
 }