File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm
Criterion Covered Total %
statement 17 20 85.0
branch n/a
condition n/a
subroutine 7 8 87.5
pod n/a
total 24 28 85.7


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