Bump version to 1.16
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / insert.pm
index b5b40ee..1afdb8c 100644 (file)
@@ -3,11 +3,23 @@ package Moose::Meta::Method::Accessor::Native::Array::insert;
 use strict;
 use warnings;
 
-our $VERSION = '1.13';
+our $VERSION = '1.16';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
-use base 'Moose::Meta::Method::Accessor::Native::Array::Writer';
+use Moose::Role;
+
+with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
+    -excludes => [
+        qw(
+            _minimum_arguments
+            _maximum_arguments
+            _new_members
+            _inline_optimized_set_new_value
+            _return_value
+            )
+    ]
+};
 
 sub _minimum_arguments { 2 }
 
@@ -22,7 +34,7 @@ sub _potential_value {
         "( do { my \@potential = \@{ $slot_access }; splice \@potential, \$_[0], 0, \$_[1]; \\\@potential } )";
 }
 
-sub _new_values { '$_[1]' }
+sub _new_members { '$_[1]' }
 
 sub _inline_optimized_set_new_value {
     my ( $self, $inv, $new, $slot_access ) = @_;
@@ -30,4 +42,12 @@ sub _inline_optimized_set_new_value {
     return "splice \@{ $slot_access }, \$_[0], 0, \$_[1];";
 }
 
+sub _return_value {
+    my ( $self, $slot_access ) = @_;
+
+    return "return ${slot_access}->[ \$_[0] ];";
+}
+
+no Moose::Role;
+
 1;