This file is indexed.

/usr/share/perl5/Parse/Method/Signatures/Param/Unpacked.pm is in libparse-method-signatures-perl 1.003014-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
package Parse::Method::Signatures::Param::Unpacked;

use Moose::Role;
use Parse::Method::Signatures::Types qw/ParamCollection/;

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

has _params => (
    is => 'ro',
    isa => ParamCollection,
    init_arg => 'params',
    predicate => 'has_params',
    coerce => 1,
    handles => {
        params => 'params',
    },
);

1;