This file is indexed.

/usr/share/racket/pkgs/contract-profile/raco.rkt is in racket-common 6.7-3.

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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#lang racket/base

(require racket/cmdline
         raco/command-name
         profile/raco-utils
         "main.rkt")

;; raco contract-profile
;; profile the main submodule (if there is one), or the top-level module

(define module-graph-file #f)
(define boundary-view-file #f)
(define boundary-view-key-file #f)
(define file
  (command-line #:program (short-program+command-name)
                #:once-each
                [("--module-graph-file") file
                 "Output module view to <file>"
                 (set! module-graph-file file)]
                [("--boundary-view-file") file
                 "Output boundary view to <file>"
                 (set! boundary-view-file file)]
                [("--boundary-view-key-file") file
                 "Output boundary view key to <file>"
                 (set! boundary-view-key-file file)]
                #:args (filename)
                filename))

(collect-garbage)
(collect-garbage)
(collect-garbage)

(contract-profile
 #:module-graph-file module-graph-file
 #:boundary-view-file boundary-view-file
 #:boundary-view-key-file boundary-view-key-file
 (dynamic-require (module-to-profile file) #f))

(module test racket/base) ; don't run for testing