make sure all modules have the same version
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Bool / unset.pm
1 package Moose::Meta::Method::Accessor::Native::Bool::unset;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.14';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method::Accessor::Native::Writer';
11
12 sub _minimum_arguments { 0 }
13 sub _maximum_arguments { 0 }
14
15 sub _potential_value { 0 }
16
17 sub _inline_optimized_set_new_value {
18     my ( $self, $inv, $new, $slot_access ) = @_;
19
20     return "$slot_access = 0;";
21 }
22
23 1;