This file is indexed.

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

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

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

has variable_name => (
    is => 'ro',
    isa => VariableName,
    required => 1,
);

sub _stringify_variable_name {
    my ($self) = @_;
    return $self->variable_name;
}

1;