This file is indexed.

/usr/lib/perl5/Search/Xapian/SimpleStopper.pm is in libsearch-xapian-perl 1.2.8.0-2.

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
22
23
24
25
26
27
28
29
30
31
32
33
package Search::Xapian::SimpleStopper;

use 5.006;
use strict;
use warnings;

use Search::Xapian::Stopper;

require DynaLoader;

our @ISA = qw(DynaLoader Search::Xapian::Stopper);

# Preloaded methods go here.

# In a new thread, copy objects of this class to unblessed, undef values.
sub CLONE_SKIP { 1 }

#use overload '='  => sub { $_[0]->clone() },
#             'fallback' => 1;

sub new {
    my $class = shift;
    my $stopper = new0();

    bless $stopper, $class;
    foreach (@_) {
	$stopper->add($_);
    }

    return $stopper;
}

1;