This file is indexed.

/usr/lib/ocaml/atd/atd_parser.mli is in libatd-ocaml-dev 1.1.2-1build4.

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
(* The type of tokens. *)

type token = 
  | UIDENT of ( string )
  | TYPE
  | TILDE
  | TIDENT of ( string )
  | STRING of ( string )
  | STAR
  | SEMICOLON
  | QUESTION
  | OP_PAREN
  | OP_CURL
  | OP_BRACK
  | OF
  | LT
  | LIDENT of ( string )
  | INHERIT
  | GT
  | EQ
  | EOF
  | COMMA
  | COLON
  | CL_PAREN
  | CL_CURL
  | CL_BRACK
  | BAR

(* This exception is raised by the monolithic API functions. *)

exception Error

(* The monolithic API. *)

val full_module: (Lexing.lexbuf -> token) -> Lexing.lexbuf -> ( Atd_ast.full_module )