This file is indexed.

/usr/lib/perl5/PDL/NiceSlice/ModuleCompile.pm is in pdl 1:2.007-2build1.

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 Foo;
use Module::Compile -base;

sub pmc_compile {
    my ($class, $source) = @_;
    # Convert $source into (most likely Perl 5) $compiled_output
    my $filtered = perldlpp('PDL::NiceSlice', $source);
    return $filtered;
}

1;