summaryrefslogtreecommitdiff
path: root/src/mod_db.sig
diff options
context:
space:
mode:
authorGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-29 11:09:28 +0200
committerGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-29 11:09:28 +0200
commitbc67c873a23309d2ef9e8365e0a9b7f8f15577ca (patch)
treea23287107cc63b63087195038f6c47c152a081d4 /src/mod_db.sig
parent562694cbb5beb31906610b7eabf42a56087673b5 (diff)
Don't use interfaces anymore for ModDb validity, but check for undetermined unif vars
Diffstat (limited to 'src/mod_db.sig')
-rw-r--r--src/mod_db.sig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mod_db.sig b/src/mod_db.sig
index f4bf661a..c45fd203 100644
--- a/src/mod_db.sig
+++ b/src/mod_db.sig
@@ -30,14 +30,12 @@
signature MOD_DB = sig
val reset : unit -> unit
- val insert : Elab.decl * Time.time * bool (* hasErrors *) * bool (* hasInference *) -> unit
+ val insert : Elab.decl * Time.time * bool (* hasErrors *) -> unit
(* Here's a declaration, including the modification timestamp of the file it came from.
* We might invalidate other declarations that depend on this one, if the timestamp has changed. *)
val lookup : Source.decl -> Elab.decl option
- val flagAllOk : unit -> unit
-
(* Allow undoing to snapshots after failed compilations. *)
val snapshot : unit -> unit
val revert : unit -> unit