Add tests for coercion with native traits
[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
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Moose::Meta::Method::Accessor::Native::Array::Writer';
11
12sub _minimum_arguments { 2 }
13
14sub _maximum_arguments { 2 }
15
16sub _inline_check_arguments {
17 my $self = shift;
18
19 return $self->_inline_check_var_is_valid_index('$_[0]');
20}
21
22sub _adds_members { 1 }
23
24sub _potential_value {
25 my ( $self, $slot_access ) = @_;
26
27 return
28 "( do { my \@potential = \@{ $slot_access }; \$potential[ \$_[0] ] = \$_[1]; \@potential } )";
29}
30
31sub _new_values { '$_[1]' }
32
331;