Add tests for coercion with native traits
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / prepend.pm
CommitLineData
e7724627 1package Moose::Meta::Method::Accessor::Native::String::prepend;
2
3use strict;
4use warnings;
5
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Moose::Meta::Method::Accessor::Native::String::Writer';
11
12sub _minimum_arguments { 1 }
13sub _maximum_arguments { 1 }
14
15sub _potential_value {
16 my ( $self, $slot_access ) = @_;
17
18 return "( \$_[0] . $slot_access )";
19}
20
211;