This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/MooseX/Role/WithOverloading/Meta/Role/Application/Composite.pm is in libmoosex-role-withoverloading-perl 0.17-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
package MooseX::Role::WithOverloading::Meta::Role::Application::Composite;

our $VERSION = '0.17';

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

with 'MooseX::Role::WithOverloading::Meta::Role::Application';

around apply_overloading => sub {
    my ($next, $self, $composite, $other) = @_;
    for my $role (@{ $composite->get_roles }) {
        $self->$next($role, $other);
    }
};

1;