This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/YAML/Loader/Syck.pm is in libyaml-syck-perl 1.29-1build3.

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;