This file is indexed.

/usr/share/perl5/perl5i/2/Signature/Method/None.pm is in libperl5i-perl 2.8.0-1ubuntu1.

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 perl5i::2::Signature::Method::None;

use strict;
use warnings;

use parent 'perl5i::2::Signature::None';

sub invocant { return '$self' }
sub is_method { return 1 }

1;