done
Stevan Little [Fri, 28 Apr 2006 20:35:35 +0000 (20:35 +0000)]
lib/Class/MOP/Instance.pm

index 10a112d..b8e2450 100644 (file)
@@ -18,6 +18,16 @@ sub new {
     my ($class, $meta, @attrs) = @_;
     my @slots = map { $_->name } @attrs;
     bless {
+        # NOTE:
+        # I am not sure that it makes
+        # sense to pass in the meta
+        # The ideal would be to just 
+        # pass in the class name, but 
+        # that is placing too much of 
+        # an assumption on bless(), 
+        # which is *probably* a safe
+        # assumption,.. but you can 
+        # never tell <:)
         meta  => $meta,
         slots => \@slots,
     } => $class;