bump version to 1.25
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / Writer.pm
CommitLineData
f7fd22b6 1package Moose::Meta::Method::Accessor::Native::Array::Writer;
2
3use strict;
4use warnings;
5
0c3879e8 6our $VERSION = '1.25';
f7fd22b6 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
a7821be5 11
8b9641b8 12with 'Moose::Meta::Method::Accessor::Native::Writer',
13 'Moose::Meta::Method::Accessor::Native::Array',
14 'Moose::Meta::Method::Accessor::Native::Collection';
a7821be5 15
44babf1f 16sub _new_members {'@_'}
a7821be5 17
44babf1f 18sub _inline_copy_old_value {
19 my ( $self, $slot_access ) = @_;
a7821be5 20
1d06edbf 21 return '[ @{(' . $slot_access . ')} ]';
a7821be5 22}
23
f7fd22b6 241;