Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type node = {
ast : Coq.Ast.t;
Ast of node
*)state : Coq.State.t;
(Full) State of node
*)memo_info : string;
}
module Completion : sig ... end
type t = private {
uri : string;
version : int;
contents : string;
root : Coq.State.t;
nodes : node list;
diags : Types.Diagnostic.t list;
completed : Completion.t;
}
val create :
state:(Coq.State.t * Loadpath.vo_path list * string list * _) ->
uri:string ->
version:int ->
contents:string ->
t
val check :
ofmt:Format.formatter ->
doc:t ->
fb_queue:Coq.Message.t list ref ->
t