inline_slot_access not inline_create_instance eg.
Brad Bowman [Wed, 28 Sep 2011 01:49:31 +0000 (11:49 +1000)]
The text refers to inline_slot_access, but the code
shown is for inline_create_instance.  This shows the
inline_slot_access code instead, as presumably intended.

lib/Moose/Cookbook/Meta/Recipe7.pod

index b3746e6..b661d44 100644 (file)
@@ -150,9 +150,9 @@ This level of indirection probably makes our instance class I<slower>
 than the default. However, when attribute access is inlined, this
 lookup will be cached:
 
-  sub inline_create_instance {
-      my ( $self, $class_variable ) = @_;
-      return 'do { my $sym = Symbol::gensym(); bless $sym, ' . $class_variable . ' }';
+  sub inline_slot_access {
+      my ( $self, $instance, $slot_name ) = @_;
+      return '*{' . $instance . '}->{' . $slot_name . '}';
   }
 
 The code snippet that the C<inline_slot_access> method returns will