Moved even more code up to Native/Writer
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / inc.pm
CommitLineData
e7724627 1package Moose::Meta::Method::Accessor::Native::String::inc;
2
3use strict;
4use warnings;
5
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
a6ae7438 10use base 'Moose::Meta::Method::Accessor::Native::Writer';
e7724627 11
12sub _minimum_arguments { 0 }
13sub _maximum_arguments { 0 }
14
15sub _potential_value {
16 my ( $self, $slot_access ) = @_;
17
18 return "( do { my \$val = $slot_access; \$val++ } )";
19}
20
e32b7489 21sub _inline_optimized_set_new_value {
22 my ( $self, $inv, $new, $slot_access ) = @_;
e7724627 23
e32b7489 24 return "${slot_access}++;";
e7724627 25}
26
271;