bump version to 1.17
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / chop.pm
CommitLineData
e7724627 1package Moose::Meta::Method::Accessor::Native::String::chop;
2
3use strict;
4use warnings;
5
bb09ad91 6our $VERSION = '1.17';
e7724627 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Writer' => {
13 -excludes => [
14 qw(
15 _maximum_arguments
16 _inline_optimized_set_new_value
7f5ec80d 17 _return_value
8b9641b8 18 )
19 ]
20};
e7724627 21
e7724627 22sub _maximum_arguments { 0 }
23
24sub _potential_value {
25 my ( $self, $slot_access ) = @_;
26
7f5ec80d 27 return "( do { my \$val = $slot_access; \@return = chop \$val; \$val } )";
e7724627 28}
29
e32b7489 30sub _inline_optimized_set_new_value {
31 my ( $self, $inv, $new, $slot_access ) = @_;
e7724627 32
7f5ec80d 33 return "\@return = chop $slot_access";
34}
35
36sub _return_value {
37 my ( $self, $slot_access ) = @_;
38
39 return '$return[0]';
e7724627 40}
41
8b9641b8 42no Moose::Role;
43
e7724627 441;