clean up ::Destructor
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Bool / set.pm
CommitLineData
664e417b 1package Moose::Meta::Method::Accessor::Native::Bool::set;
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
16 _inline_optimized_set_new_value
17 )
18 ]
7f5ec80d 19 };
664e417b 20
664e417b 21sub _maximum_arguments { 0 }
22
a6ae7438 23sub _potential_value { 1 }
24
664e417b 25sub _inline_optimized_set_new_value {
26 my ( $self, $inv, $new, $slot_access ) = @_;
27
584540d9 28 return "$slot_access = 1";
664e417b 29}
30
8b9641b8 31no Moose::Role;
32
664e417b 331;