From 2ef7c31074720997bbc519e44e34c076677ab282 Mon Sep 17 00:00:00 2001 From: Thomas Bauereiss Date: Thu, 14 Dec 2017 16:48:05 +0000 Subject: Make sequential and mwords global variables in Lem pretty-printer --- src/process_file.mli | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/process_file.mli') diff --git a/src/process_file.mli b/src/process_file.mli index f99bdf54..a9b9cf1f 100644 --- a/src/process_file.mli +++ b/src/process_file.mli @@ -63,8 +63,6 @@ val load_file_no_check : Ast.order -> string -> unit Ast.defs val load_file : Ast.order -> Type_check.Env.t -> string -> Type_check.tannot Ast.defs * Type_check.Env.t val opt_new_parser : bool ref -val opt_lem_sequential : bool ref -val opt_lem_mwords : bool ref val opt_just_check : bool ref val opt_ddump_tc_ast : bool ref val opt_ddump_rewrite_ast : ((string * int) option) ref -- cgit v1.2.3 From 5cd77a145b886e614d4b5cb46e53d42736cc6865 Mon Sep 17 00:00:00 2001 From: Brian Campbell Date: Mon, 18 Dec 2017 14:28:02 +0000 Subject: Handle multiple -lem_lib options --- src/process_file.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process_file.mli') diff --git a/src/process_file.mli b/src/process_file.mli index a9b9cf1f..17088d36 100644 --- a/src/process_file.mli +++ b/src/process_file.mli @@ -73,7 +73,7 @@ val opt_auto_mono : bool ref type out_type = | Lem_ast_out - | Lem_out of string option (* If present, the string is a file to open in the lem backend*) + | Lem_out of string list option (* If present, the strings are files to open in the lem backend*) val output : string -> (* The path to the library *) -- cgit v1.2.3 From fb12f81bc8c682439a440e3939c7ae029d91fd5e Mon Sep 17 00:00:00 2001 From: Brian Campbell Date: Mon, 18 Dec 2017 14:32:09 +0000 Subject: Clean up last commit --- src/process_file.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process_file.mli') diff --git a/src/process_file.mli b/src/process_file.mli index 17088d36..88c9b9fb 100644 --- a/src/process_file.mli +++ b/src/process_file.mli @@ -73,7 +73,7 @@ val opt_auto_mono : bool ref type out_type = | Lem_ast_out - | Lem_out of string list option (* If present, the strings are files to open in the lem backend*) + | Lem_out of string list (* If present, the strings are files to open in the lem backend*) val output : string -> (* The path to the library *) -- cgit v1.2.3