This file is indexed.

/usr/share/perl5/perl5i/2/Meta/Class.pm is in libperl5i-perl 2.13.0-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
package perl5i::2::Meta::Class;

# Methods here are for $thing->mc->method.

use strict;
use warnings;

use parent qw(perl5i::2::Meta);

sub class {
    return ref ${${$_[0]}} ? ref ${${$_[0]}} : ${${$_[0]}};
}

sub reftype {
    return;
}

1;