package coq-lsp
-
coq-lsp.lsp
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Basic JSON-RPC Incoming Messages
type t =
| Notification of {
method_ : string;
params : (string * Yojson.Safe.t) list;
}
| Request of {
id : int;
method_ : string;
params : (string * Yojson.Safe.t) list;
}
val from_yojson : Yojson.Safe.t -> (t, string) Result.t
Reify an incoming message
val method_ : t -> string
val params : t -> (string * Yojson.Safe.t) list