summaryrefslogtreecommitdiff
path: root/src/errormsg.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/errormsg.sig
parent11bf1e86020f99893cd987eb1a15952e517248cf (diff)
parent483115ee395c26ba7b52ac84757c8a1de4fe2d33 (diff)
Merge pull request #186 from FrigoEU/lsp
Language Server Protocol (LSP)
Diffstat (limited to 'src/errormsg.sig')
-rw-r--r--src/errormsg.sig8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/errormsg.sig b/src/errormsg.sig
index 92425842..1fa4013c 100644
--- a/src/errormsg.sig
+++ b/src/errormsg.sig
@@ -48,9 +48,17 @@ signature ERROR_MSG = sig
val posOf : int -> pos
val spanOf : int * int -> span
+ (* To monitor in which modules the elaboration phase finds errors *)
+ val startElabStructure : string -> unit
+ val stopElabStructureAndGetErrored : string -> bool (* Did the module elab encounter errors? *)
+
+ val resetStructureTracker: unit -> unit
val resetErrors : unit -> unit
val anyErrors : unit -> bool
val error : string -> unit
val errorAt : span -> string -> unit
val errorAt' : int * int -> string -> unit
+ val readErrorLog: unit ->
+ { span: span
+ , message: string } list
end