Source file ortac_wrapper.ml
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
open Cmdliner
open Registration
module Generate = Generate
module Plugin : sig
val cmd : unit Cmd.t
end = struct
let main input output () =
let fmt = get_out_formatter output in
try Generate.generate input fmt
with Gospel.Warnings.Error e ->
Fmt.epr "%a@." Gospel.Warnings.pp e;
exit 1
let info =
Cmd.info "wrapper"
~doc:
"Wrap module functions with assertions to check their specifications."
let term = Term.(const main $ ocaml_file $ output_file $ setup_log)
let cmd = Cmd.v info term
end
let () = register Plugin.cmd