bump version to 0.71_02 and update Changes
[gitmo/Class-MOP.git] / lib / Class / MOP / Immutable.pm
index bde41f7..e1493cb 100644 (file)
@@ -9,7 +9,7 @@ use Class::MOP::Method::Constructor;
 use Carp         'confess';
 use Scalar::Util 'blessed';
 
-our $VERSION   = '0.71_01';
+our $VERSION   = '0.71_02';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -36,7 +36,7 @@ sub new {
         'metaclass'           => $metaclass,
         'options'             => $options,
         'immutable_metaclass' => undef,
-        'inlined_constructor' => 0,
+        'inlined_constructor' => undef,
     );
 
     return $self;
@@ -159,7 +159,7 @@ sub _inline_constructor {
 
     if ( $options->{replace_constructor} or $constructor->can_be_inlined ) {
         $metaclass->add_method( $options->{constructor_name} => $constructor );
-        $self->{inlined_constructor} = 1;
+        $self->{inlined_constructor} = $constructor;
     }
 }
 
@@ -364,7 +364,7 @@ sub make_metaclass_mutable {
 
         if ( blessed($immutable->get_method($options{constructor_name})) eq $constructor_class ) {
             $immutable->remove_method( $options{constructor_name}  );
-            $self->{inlined_constructor} = 0;
+            $self->{inlined_constructor} = undef;
         }
     }
 }
@@ -464,6 +464,9 @@ given to make_metaclass_immutable.
 
 =item B<inlined_constructor>
 
+If the constructor was inlined, this returns the constructor method
+object that was created to do this.
+
 =back
 
 =head1 AUTHORS