This file is indexed.

/usr/share/perl5/Module/CPANfile/Prereq.pm is in libmodule-cpanfile-perl 1.1002-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 Module::CPANfile::Prereq;
use strict;

sub new {
    my($class, %options) = @_;
    bless \%options, $class;
}

sub feature { $_[0]->{feature} }
sub phase   { $_[0]->{phase} }
sub type    { $_[0]->{type} }
sub module  { $_[0]->{module} }
sub requirement { $_[0]->{requirement} }

sub match_feature {
    my($self, $identifier) = @_;
    no warnings 'uninitialized';
    $self->feature eq $identifier;
}

1;