This file is indexed.

/usr/share/gnome-shell/js/ui/link.js is in gnome-shell-common 3.4.1-0ubuntu2.

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
18
19
20
21
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-

const Lang = imports.lang;
const Signals = imports.signals;
const St = imports.gi.St;

const Link = new Lang.Class({
    Name: 'Link',

    _init : function(props) {
        let realProps = { reactive: true,
                          track_hover: true,
                          style_class: 'shell-link' };
        // The user can pass in reactive: false to override the above and get
        // a non-reactive link (a link to the current page, perhaps)
        Lang.copyProperties(props, realProps);

        this.actor = new St.Button(realProps);
    }
});
Signals.addSignalMethods(Link.prototype);