summaryrefslogtreecommitdiff
path: root/src/mod_db.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2020-01-15 12:07:44 -0500
committerGravatar GitHub <noreply@github.com>2020-01-15 12:07:44 -0500
commit5cce43a484bdde0053820b8ae408bcba830b25ba (patch)
tree9d5719046e082337e3ed057e6a495db3faca2c8a /src/mod_db.sig
parent11bf1e86020f99893cd987eb1a15952e517248cf (diff)
parent483115ee395c26ba7b52ac84757c8a1de4fe2d33 (diff)
Merge pull request #186 from FrigoEU/lsp
Language Server Protocol (LSP)
Diffstat (limited to 'src/mod_db.sig')
-rw-r--r--src/mod_db.sig5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mod_db.sig b/src/mod_db.sig
index 8f78f2c2..fb396603 100644
--- a/src/mod_db.sig
+++ b/src/mod_db.sig
@@ -30,12 +30,15 @@
signature MOD_DB = sig
val reset : unit -> unit
- val insert : Elab.decl * Time.time -> 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 lookupModAndDepsIncludingErrored:
+ string -> (Elab.decl * Elab.decl list) option
+
(* Allow undoing to snapshots after failed compilations. *)
val snapshot : unit -> unit
val revert : unit -> unit