This file is indexed.

/usr/share/racket/collects/syntax/flatten-begin.rkt is in racket-common 6.3-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
 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
#lang racket/base

(require (for-template racket/base))

(provide flatten-begin
         flatten-all-begins)

(define (flatten-begin stx)
  (let ([l (syntax->list stx)])
    (if l
        (map (lambda (e)
               (syntax-track-origin e stx (car l)))
             (cdr l))
        (raise-syntax-error
         #f
         "bad syntax"
         stx))))

;; flatten-all-begins : Syntax -> (Listof Syntax)
;; Flatten `begin` expressions recursively
(define (flatten-all-begins orig-stx)
  (define val (syntax-e orig-stx))
  (unless (and (pair? val)
               (not (null? val))
               (identifier? (car val))
               (free-identifier=? (car val) #'begin))
    (raise-syntax-error
     #f
     "not a begin expression"
     orig-stx))
  (let loop ([stx orig-stx])
    (define lst (syntax->list stx))
    (if (and lst
             (not (null? lst))
             (free-identifier=? (car lst) #'begin))
        (apply append (map loop (cdr lst)))
        (list (syntax-track-origin stx orig-stx #'begin)))))