-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathocaml_tools.mli
40 lines (36 loc) · 1.72 KB
/
ocaml_tools.mli
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
40
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Sebastien Hinderer, projet Gallium, INRIA Paris *)
(* *)
(* Copyright 2018 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Descriptions of the OCaml tools *)
class tool :
name : string ->
family : string ->
flags : string ->
directory : string ->
exit_status_variable : Variables.t ->
reference_variable : Variables.t ->
output_variable : Variables.t ->
object
method name : string
method family : string
method flags : string
method directory : string
method exit_status_variable : Variables.t
method reference_variable : Variables.t
method output_variable : Variables.t
method reference_filename_suffix : Environments.t -> string
method reference_file : Environments.t -> string -> string
end
val expected_exit_status : Environments.t -> tool -> int
val ocamldoc: tool