line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use strict; |
3
|
18
|
|
|
18
|
|
50199
|
use warnings; |
|
18
|
|
|
|
|
44
|
|
|
18
|
|
|
|
|
472
|
|
4
|
18
|
|
|
18
|
|
76
|
|
|
18
|
|
|
|
|
35
|
|
|
18
|
|
|
|
|
349
|
|
5
|
|
|
|
|
|
|
use Moo; |
6
|
18
|
|
|
18
|
|
459
|
use Storable qw(dclone); |
|
18
|
|
|
|
|
5142
|
|
|
18
|
|
|
|
|
89
|
|
7
|
18
|
|
|
18
|
|
7960
|
use Hash::Util qw(lock_hashref); |
|
18
|
|
|
|
|
11940
|
|
|
18
|
|
|
|
|
1143
|
|
8
|
18
|
|
|
18
|
|
7313
|
use Types::Standard qw(HashRef); |
|
18
|
|
|
|
|
39133
|
|
|
18
|
|
|
|
|
107
|
|
9
|
18
|
|
|
18
|
|
1803
|
use namespace::clean; |
|
18
|
|
|
|
|
70525
|
|
|
18
|
|
|
|
|
214
|
|
10
|
18
|
|
|
18
|
|
9689
|
|
|
18
|
|
|
|
|
10564
|
|
|
18
|
|
|
|
|
125
|
|
11
|
|
|
|
|
|
|
### Input ### |
12
|
|
|
|
|
|
|
# Class to isolate and manipulate input HashRef. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has _input => ( |
15
|
|
|
|
|
|
|
is => 'ro', |
16
|
|
|
|
|
|
|
isa => HashRef, |
17
|
|
|
|
|
|
|
required => 1, |
18
|
|
|
|
|
|
|
init_arg => 'input', |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
my ($self, %args) = @_; |
22
|
|
|
|
|
|
|
|
23
|
19
|
|
|
19
|
0
|
33198
|
if (my $input = $args{input}) { |
24
|
|
|
|
|
|
|
$args{input} = $self->_clone_and_lock_input($input); |
25
|
19
|
50
|
|
|
|
88
|
} |
26
|
19
|
|
|
|
|
74
|
|
27
|
|
|
|
|
|
|
return \%args; |
28
|
|
|
|
|
|
|
} |
29
|
18
|
|
|
|
|
740
|
|
30
|
|
|
|
|
|
|
return $_[0]->_input; |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
36
|
|
|
36
|
0
|
4492
|
# Create locked copy. |
34
|
|
|
|
|
|
|
# Copy input to work with isolated HashRef. |
35
|
|
|
|
|
|
|
my $input = dclone($_[1]); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# Lock input to prevent accidental modifying. |
38
|
|
|
|
|
|
|
return lock_hashref($input); |
39
|
19
|
|
|
19
|
|
1346
|
} |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
1; |