Commit | Line | Data |
a7821be5 |
1 | package Moose::Meta::Method::Accessor::Native::Array::set; |
2 | |
3 | use strict; |
4 | use warnings; |
5 | |
6 | our $VERSION = '1.13'; |
7 | $VERSION = eval $VERSION; |
8 | our $AUTHORITY = 'cpan:STEVAN'; |
9 | |
10 | use base 'Moose::Meta::Method::Accessor::Native::Array::Writer'; |
11 | |
12 | sub _minimum_arguments { 2 } |
13 | |
14 | sub _maximum_arguments { 2 } |
15 | |
16 | sub _inline_check_arguments { |
17 | my $self = shift; |
18 | |
19 | return $self->_inline_check_var_is_valid_index('$_[0]'); |
20 | } |
21 | |
22 | sub _adds_members { 1 } |
23 | |
24 | sub _potential_value { |
25 | my ( $self, $slot_access ) = @_; |
26 | |
27 | return |
e32b7489 |
28 | "( do { my \@potential = \@{ $slot_access }; \$potential[ \$_[0] ] = \$_[1]; \\\@potential } )"; |
a7821be5 |
29 | } |
30 | |
31 | sub _new_values { '$_[1]' } |
32 | |
e32b7489 |
33 | sub _inline_optimized_set_new_value { |
34 | my ( $self, $inv, $new, $slot_access ) = @_; |
35 | |
36 | return "${slot_access}->[ \$_[0] ] = \$_[1];"; |
37 | } |
38 | |
a7821be5 |
39 | 1; |