| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Parse::Method::Signatures::ParamCollection; |
|
2
|
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
11
|
use Moose; |
|
|
3
|
|
|
|
|
4
|
|
|
|
3
|
|
|
|
|
18
|
|
|
4
|
3
|
|
|
3
|
|
13677
|
use MooseX::Types::Moose qw/ArrayRef/; |
|
|
3
|
|
|
|
|
3
|
|
|
|
3
|
|
|
|
|
29
|
|
|
5
|
3
|
|
|
3
|
|
11014
|
use Parse::Method::Signatures::Types qw/Param/; |
|
|
3
|
|
|
|
|
8
|
|
|
|
3
|
|
|
|
|
13
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
3
|
|
|
3
|
|
4427
|
use namespace::clean -except => 'meta'; |
|
|
3
|
|
|
|
|
4
|
|
|
|
3
|
|
|
|
|
21
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has params => ( |
|
10
|
|
|
|
|
|
|
is => 'ro', |
|
11
|
|
|
|
|
|
|
isa => ArrayRef[Param], |
|
12
|
|
|
|
|
|
|
required => 1, |
|
13
|
|
|
|
|
|
|
auto_deref => 1, |
|
14
|
|
|
|
|
|
|
); |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub to_string { |
|
17
|
103
|
|
|
103
|
0
|
167
|
my ($self) = @_; |
|
18
|
103
|
|
|
|
|
3059
|
return join(q{, }, map { $_->to_string } $self->params); |
|
|
150
|
|
|
|
|
1006
|
|
|
19
|
|
|
|
|
|
|
} |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |