Add explicit return values for (almost) all native delegation mutating methods
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / reset.pm
CommitLineData
04e05413 1package Moose::Meta::Method::Accessor::Native::Counter::reset;
2
3use strict;
4use warnings;
5
efa728b4 6our $VERSION = '1.15';
04e05413 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};
04e05413 21
04e05413 22sub _maximum_arguments { 0 }
23
24sub _potential_value {
25 my ( $self, $slot_access ) = @_;
26
27 return "\$attr->default(\$self)"
28}
29
30sub _inline_optimized_set_new_value {
31 my ( $self, $inv, $new, $slot_access ) = @_;
32
584540d9 33 return "$slot_access = \$attr->default(\$self)";
04e05413 34}
35
7f5ec80d 36sub _return_value {
37 my ( $self, $slot_access ) = @_;
38
39 return "return $slot_access;";
40}
41
8b9641b8 42no Moose::Role;
43
04e05413 441;