This file is indexed.

/usr/share/perl5/Makefile/AST/Variable.pm is in libmakefile-parser-perl 0.215-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
package Makefile::AST::Variable;

use strict;
use warnings;
use base 'Class::Accessor::Fast';

__PACKAGE__->mk_accessors(qw{
    name value flavor origin
    lineno file
});

1;