use hash refs with _new
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Accessor.pm
index f882ae5..d4c7de6 100644 (file)
@@ -28,7 +28,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);
 
     # we don't want this creating
     # a cycle in the code, if not
@@ -41,11 +41,12 @@ sub new {
 }
 
 sub _new {
-    my ( $class, %options ) = @_;
+    my $class = shift;
+    my $options = @_ == 1 ? $_[0] : {@_};
 
-    $options{is_inline} ||= 0;
+    $options->{is_inline} ||= 0;
 
-    return bless \%options, $class;
+    return bless $options, $class;
 }
 
 ## accessors