This file is indexed.

/usr/share/perl5/GO/Parsers/obj_yaml_parser.pm is in libgo-perl 0.15-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
package GO::Parsers::obj_yaml_parser;
use strict;
use base qw(GO::Parsers::obj_emitter GO::Parsers::base_parser);
use GO::Model::Graph;
use YAML;

sub parse_fh {
    my ($self, $fh) = @_;
    my $str = join('',<$fh>);
    $fh->close;
    my $g = Load($str);
    $self->emit_graph($g);
    return $g;
}


1;