error if we have a lazy attr with no default or builder
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / dec.pm
CommitLineData
04e05413 1package Moose::Meta::Method::Accessor::Native::Counter::dec;
2
3use strict;
4use warnings;
5
245478d5 6our $VERSION = '1.19';
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 _minimum_arguments
16 _maximum_arguments
53a4677c 17 _optimized_set_new_value
8b9641b8 18 )
19 ]
20};
04e05413 21
1e2c801e 22sub _minimum_arguments { 0 }
23sub _maximum_arguments { 1 }
04e05413 24
25sub _potential_value {
53a4677c 26 my $self = shift;
27 my ($slot_access) = @_;
04e05413 28
1e2c801e 29 return $slot_access . ' - (defined $_[0] ? $_[0] : 1)';
04e05413 30}
31
53a4677c 32sub _optimized_set_new_value {
33 my $self = shift;
34 my ($inv, $new, $slot_access) = @_;
04e05413 35
53a4677c 36 return $slot_access . ' -= defined $_[0] ? $_[0] : 1';
04e05413 37}
38
8b9641b8 39no Moose::Role;
40
04e05413 411;