Refactored native trait accessors so they are done entirely in roles.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / set.pm
CommitLineData
a7821be5 1package Moose::Meta::Method::Accessor::Native::Array::set;
2
3use strict;
4use warnings;
5
10bd99ec 6our $VERSION = '1.14';
a7821be5 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
13 -excludes => [
14 qw(
15 _minimum_arguments
16 _maximum_arguments
17 _inline_check_arguments
18 _new_members
19 _inline_optimized_set_new_value
20 )
21 ]
22};
a7821be5 23
24sub _minimum_arguments { 2 }
25
26sub _maximum_arguments { 2 }
27
28sub _inline_check_arguments {
29 my $self = shift;
30
31 return $self->_inline_check_var_is_valid_index('$_[0]');
32}
33
34sub _adds_members { 1 }
35
36sub _potential_value {
37 my ( $self, $slot_access ) = @_;
38
39 return
e32b7489 40 "( do { my \@potential = \@{ $slot_access }; \$potential[ \$_[0] ] = \$_[1]; \\\@potential } )";
a7821be5 41}
42
44babf1f 43sub _new_members { '$_[1]' }
a7821be5 44
e32b7489 45sub _inline_optimized_set_new_value {
46 my ( $self, $inv, $new, $slot_access ) = @_;
47
584540d9 48 return "${slot_access}->[ \$_[0] ] = \$_[1]";
e32b7489 49}
50
8b9641b8 51no Moose::Role;
52
a7821be5 531;