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