File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm
Criterion Covered Total %
statement 16 19 84.2
branch n/a
condition n/a
subroutine 6 7 85.7
pod n/a
total 22 26 84.6


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