This file is indexed.

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

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

sub _stringify_required {
    my ($self) = @_;
    return $self->required ? q{} : q{?};
}

1;