This file is indexed.

/usr/share/perl5/Parse/Method/Signatures/Param/Unpacked/Hash.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
package Parse::Method::Signatures::Param::Unpacked::Hash;

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

with 'Parse::Method::Signatures::Param::Unpacked';

sub _stringify_variable_name {
    my ($self) = @_;
    return '{' . $self->_params->to_string . '}';
}

1;