X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FAccessor%2FNative%2FString%2Fchop.pm;h=cb3ed8cd5000785d04629b676bf8d9f794b3b26e;hb=00bbc132f9e1cb2b1a44aa287887cafa27a84577;hp=71411be21a694f12e5c5c40373e9f6f4db821514;hpb=efa728b4984ddf1611bc9931fbc209438459652c;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm b/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm index 71411be..cb3ed8c 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm @@ -3,33 +3,35 @@ package Moose::Meta::Method::Accessor::Native::String::chop; use strict; use warnings; -our $VERSION = '1.15'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use Moose::Role; -with 'Moose::Meta::Method::Accessor::Native::Writer' => { - -excludes => [ - qw( - _maximum_arguments - _inline_optimized_set_new_value - ) - ] -}; +with 'Moose::Meta::Method::Accessor::Native::Writer'; sub _maximum_arguments { 0 } sub _potential_value { - my ( $self, $slot_access ) = @_; - - return "( do { my \$val = $slot_access; chop \$val; \$val } )"; + my $self = shift; + my ($slot_access) = @_; + + return '(do { ' + . 'my $val = ' . $slot_access . '; ' + . '@return = chop $val; ' + . '$val; ' + . '})'; } sub _inline_optimized_set_new_value { - my ( $self, $inv, $new, $slot_access ) = @_; + my $self = shift; + my ($inv, $new, $slot_access) = @_; + + return '@return = chop ' . $slot_access . ';'; +} + +sub _return_value { + my $self = shift; + my ($slot_access) = @_; - return "chop $slot_access"; + return '$return[0]'; } no Moose::Role;