This file is indexed.

/usr/share/perl5/MooseX/App/Plugin/BashCompletion/Meta/Class.pm is in libmoosex-app-perl 1.37-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
19
20
21
22
23
# ============================================================================
package MooseX::App::Plugin::BashCompletion::Meta::Class;
# ============================================================================

use 5.010;
use utf8;

use namespace::autoclean;
use Moose::Role;

use MooseX::App::Plugin::BashCompletion::Command;

around '_build_app_commands' => sub {
    my $orig = shift;
    my $self = shift;

    my $return = $self->$orig(@_);
    $return->{bash_completion} ||= 'MooseX::App::Plugin::BashCompletion::Command';

    return $return;
};

1;