Add semi-colon in code that generates entire assignment, which makes snippets more...
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / push.pm
1 package Moose::Meta::Method::Accessor::Native::Array::push;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.14';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method::Accessor::Native::Array::Writer';
11
12 sub _adds_members { 1 }
13
14 sub _potential_value {
15     my ( $self, $slot_access ) = @_;
16
17     return "[ \@{ $slot_access }, \@_ ]";
18 }
19
20 sub _inline_optimized_set_new_value {
21     my ( $self, $inv, $new, $slot_access ) = @_;
22
23     return "push \@{ $slot_access }, \@_";
24 }
25
26 1;