bump version and update changes for 0.65_05
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Generated.pm
index 1ba8cb0..c9f477b 100644 (file)
@@ -6,7 +6,8 @@ use warnings;
 
 use Carp 'confess';
 
-our $VERSION   = '0.65';
+our $VERSION   = '0.64_05';
+$VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Class::MOP::Method';
@@ -18,20 +19,23 @@ sub new {
     ($options{package_name} && $options{name})
         || confess "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";     
         
-    my $self = bless {
-        # from our superclass
-        'body'          => undef,
-        'package_name'  => $options{package_name},
-        'name'          => $options{name},        
-        # specific to this subclass
-        'is_inline'     => ($options{is_inline} || 0),
-    } => $class;
+    my $self = $class->_new(\%options);
     
     $self->initialize_body;
     
     return $self;
 }
 
+sub _new {
+    my $class = shift;
+    my $options = @_ == 1 ? $_[0] : {@_};
+
+    $options->{is_inline} ||= 0;
+    $options->{body} ||= undef;
+
+    bless $options, $class;
+}
+
 ## accessors
 
 sub is_inline { (shift)->{'is_inline'} }