This file is indexed.

/usr/lib/perl5/Search/Xapian/Stopper.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
34
package Search::Xapian::Stopper;

use 5.006;
use strict;
use warnings;
use Carp;

require DynaLoader;

our @ISA = qw(DynaLoader);

# Preloaded methods go here.

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

sub new() {
  my $class = shift;
  my $stopper;
  my $invalid_args;
  if( scalar(@_) == 0 ) {
    $stopper = new1();
  } else {
    $stopper = new2(@_);
  }
  if( $invalid_args ) {
    Carp::carp( "USAGE: $class->new(), $class->new(\@words)" );
    exit;
  }
  bless $stopper, $class;
  return $stopper;
}

1;