ligo/src/parser/ligodity/EvalOpt.mli

24 lines
678 B
OCaml
Raw Normal View History

(* Command-line options for CameLIGO *)
2019-07-24 15:43:51 +02:00
(* The type [options] gathers the command-line options.
If the field [input] is [Some src], the name of the CameLIGO
source file, with the extension ".mligo", is [src]. If [input] is
2019-07-24 15:43:51 +02:00
[Some "-"] or [None], the source file is read from standard input.
The field [libs] is made of library paths (colon-separated).
The field [verbose] is a set of stages of the compiler chain,
about which more information may be displayed.
*)
type options = {
input : string option;
libs : string list;
verbose : Utils.String.Set.t;
}
2019-07-24 15:43:51 +02:00
(* Parsing the command-line options on stdin *)
val read : unit -> options