This file is indexed.

/usr/share/perl5/Parse/Method/Signatures/ParamCollection.pm is in libparse-method-signatures-perl 1.003016-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
package Parse::Method::Signatures::ParamCollection;

use Moose;
use MooseX::Types::Moose qw/ArrayRef/;
use Parse::Method::Signatures::Types qw/Param/;

use namespace::clean -except => 'meta';

has params => (
    is         => 'ro',
    isa        => ArrayRef[Param],
    required   => 1,
    auto_deref => 1,
);

sub to_string {
    my ($self) = @_;
    return join(q{, }, map { $_->to_string } $self->params);
}

1;