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