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.2203';
3              
4 2     2   1394 use strict;
  2         7  
  2         68  
5 2     2   11 use warnings;
  2         8  
  2         65  
6              
7 2     2   13 use Moose::Role;
  2         5  
  2         18  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Writer';
10              
11 7     7   25 sub _maximum_arguments { 0 }
12              
13             sub _potential_value {
14 7     7   18 my $self = shift;
15 7         20 my ($slot_access) = @_;
16              
17 7         26 return $slot_access . ' ? 0 : 1';
18             }
19              
20             sub _inline_optimized_set_new_value {
21 3     3   8 my $self = shift;
22 3         11 my ($inv, $new, $slot_access) = @_;
23              
24 3         21 return $slot_access . ' = ' . $slot_access . ' ? 0 : 1;';
25             }
26              
27 2     2   19 no Moose::Role;
  2         6  
  2         12  
28              
29             1;