bump version and update changes for 0.65_05
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Generated.pm
index 61ae408..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,7 +19,7 @@ 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 = $class->_new(%options);
+    my $self = $class->_new(\%options);
     
     $self->initialize_body;
     
@@ -26,12 +27,13 @@ sub new {
 }
 
 sub _new {
-    my ( $class, %options ) = @_;
+    my $class = shift;
+    my $options = @_ == 1 ? $_[0] : {@_};
 
-    $options{is_inline} ||= 0;
-    $options{body} ||= undef;
+    $options->{is_inline} ||= 0;
+    $options->{body} ||= undef;
 
-    bless \%options, $class;
+    bless $options, $class;
 }
 
 ## accessors