File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Bool::toggle;
2             our $VERSION = '2.2205';
3              
4 2     2   1381 use strict;
  2         5  
  2         68  
5 2     2   12 use warnings;
  2         5  
  2         59  
6              
7 2     2   12 use Moose::Role;
  2         8  
  2         15  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Writer';
10              
11 7     7   26 sub _maximum_arguments { 0 }
12              
13             sub _potential_value {
14 7     7   19 my $self = shift;
15 7         22 my ($slot_access) = @_;
16              
17 7         24 return $slot_access . ' ? 0 : 1';
18             }
19              
20             sub _inline_optimized_set_new_value {
21 3     3   6 my $self = shift;
22 3         12 my ($inv, $new, $slot_access) = @_;
23              
24 3         21 return $slot_access . ' = ' . $slot_access . ' ? 0 : 1;';
25             }
26              
27 2     2   17 no Moose::Role;
  2         8  
  2         12  
28              
29             1;