2019-05-12 19:31:22 +02:00
|
|
|
(* Command-line options for the Mini-ML compiler/interpreter *)
|
|
|
|
|
|
|
|
(* If the value of [input] is [Some src], the name of the Mini-ML
|
|
|
|
source file, with the extension ".mml", is [src]. If [input] is
|
|
|
|
[Some "-"] or [None], the source file is read from standard
|
|
|
|
input. *)
|
|
|
|
|
|
|
|
(* The Mini-ML source file can be processed in two mutually exclusive
|
|
|
|
manners: if the value [eval] is set to [true], the source is
|
|
|
|
interpreted; if the value [compile] is not [None], the source is
|
|
|
|
compiled to OCaml; if [eval] is [false] and [compile] is [None],
|
|
|
|
nothing is done with the source. Note: if [compile] is [Some "-"],
|
|
|
|
the compiled code is sent to standard output. *)
|
|
|
|
|
2019-05-15 15:03:15 +02:00
|
|
|
type options = {
|
|
|
|
input : string option;
|
|
|
|
eval : bool;
|
|
|
|
compile : string option;
|
|
|
|
libs : string list;
|
|
|
|
verbose : Utils.String.Set.t;
|
|
|
|
raw_edits : bool
|
|
|
|
}
|
2019-05-12 19:31:22 +02:00
|
|
|
|
2019-05-15 15:03:15 +02:00
|
|
|
val read : unit -> options
|