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.2205';
3              
4 2     2   1373 use strict;
  2         4  
  2         79  
5 2     2   12 use warnings;
  2         4  
  2         63  
6              
7 2     2   10 use Moose::Role;
  2         4  
  2         26  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Writer';
10              
11 7     7   31 sub _maximum_arguments { 0 }
12              
13             sub _potential_value {
14 7     7   17 my $self = shift;
15 7         22 my ($slot_access) = @_;
16              
17 7         58 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         11  
28              
29             1;