This file is indexed.

/usr/lib/perl5/YAML/Loader/Syck.pm is in libyaml-syck-perl 1.19-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
package YAML::Loader::Syck;
use strict;

sub new { $_[0] }
sub load { shift; YAML::Syck::Load($_[0]) }

1;