summaryrefslogtreecommitdiff
path: root/src/mod_db.sig
diff options
context:
space:
mode:
authorGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-07 17:55:02 +0200
committerGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-07 17:55:02 +0200
commit562694cbb5beb31906610b7eabf42a56087673b5 (patch)
treeac44fa14f000b95d285dc18a2a6d1153bd0a918f /src/mod_db.sig
parent7fbfe759d3bc572dd7ee379429f0ff2d1f7894a0 (diff)
First iteration of more detailed elaboration caching
Diffstat (limited to 'src/mod_db.sig')
-rw-r--r--src/mod_db.sig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mod_db.sig b/src/mod_db.sig
index 8f78f2c2..f4bf661a 100644
--- a/src/mod_db.sig
+++ b/src/mod_db.sig
@@ -30,12 +30,14 @@
signature MOD_DB = sig
val reset : unit -> unit
- val insert : Elab.decl * Time.time -> unit
+ val insert : Elab.decl * Time.time * bool (* hasErrors *) * bool (* hasInference *) -> 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