bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / clear.pm
CommitLineData
e7724627 1package Moose::Meta::Method::Accessor::Native::String::clear;
2
3use strict;
4use warnings;
5
aff6aafc 6our $VERSION = '1.18';
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
17 )
18 ]
19};
e7724627 20
e7724627 21sub _maximum_arguments { 0 }
22
23sub _potential_value {
24 my ( $self, $slot_access ) = @_;
25
26 return "q{}";
27}
28
e32b7489 29sub _inline_optimized_set_new_value {
30 my ( $self, $inv, $new, $slot_access ) = @_;
e7724627 31
584540d9 32 return "$slot_access = q{}";
e7724627 33}
34
8b9641b8 35no Moose::Role;
36
e7724627 371;