line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
4
|
|
|
4
|
|
11958
|
use v5.12; |
|
4
|
|
|
|
|
11
|
|
2
|
4
|
|
|
4
|
|
18
|
use strict; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
71
|
|
3
|
4
|
|
|
4
|
|
17
|
use warnings; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
217
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:TOBYINK'; |
7
|
|
|
|
|
|
|
our $VERSION = '0.007'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
use parent qw(Benchmark::Featureset::ParamCheck::Base::MXPV); |
10
|
4
|
|
|
4
|
|
20
|
use Ref::Util 0.203 (); |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
21
|
|
11
|
4
|
|
|
4
|
|
258
|
use Ref::Util::XS 0.116 (); |
|
4
|
|
|
|
|
54
|
|
|
4
|
|
|
|
|
82
|
|
12
|
4
|
|
|
4
|
|
17
|
use Types::Standard 1.001_009 -types; |
|
4
|
|
|
|
|
58
|
|
|
4
|
|
|
|
|
109
|
|
13
|
4
|
|
|
4
|
|
22
|
use Type::Tiny::XS 0.012 (); |
|
4
|
|
|
|
|
63
|
|
|
4
|
|
|
|
|
25
|
|
14
|
4
|
|
|
4
|
|
22250
|
use namespace::autoclean; |
|
4
|
|
|
|
|
64
|
|
|
4
|
|
|
|
|
87
|
|
15
|
4
|
|
|
4
|
|
19
|
|
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
25
|
|
16
|
|
|
|
|
|
|
use constant long_name => 'MooseX::Params::Validate with Type::Tiny'; |
17
|
4
|
|
|
4
|
|
217
|
use constant short_name => 'MXPV-TT'; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
213
|
|
18
|
4
|
|
|
4
|
|
20
|
|
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
504
|
|
19
|
|
|
|
|
|
|
state $check = { |
20
|
|
|
|
|
|
|
integer => { isa => Int }, |
21
|
118
|
|
|
118
|
0
|
350
|
hashes => { isa => ArrayRef[HashRef] }, |
22
|
|
|
|
|
|
|
object => { isa => HasMethods[qw/ print close /] }, |
23
|
|
|
|
|
|
|
}; |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
state $check = [ |
27
|
|
|
|
|
|
|
{ isa => Int }, |
28
|
|
|
|
|
|
|
{ isa => ArrayRef[HashRef] }, |
29
|
107
|
|
|
107
|
0
|
354
|
{ isa => HasMethods[qw/ print close /] }, |
30
|
|
|
|
|
|
|
]; |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
1; |