package vsrocq-language-server

  1. Overview
  2. Docs
VSRocq language server

Install

dune-project
 Dependency

Authors

Maintainers

Sources

vsrocq-language-server-2.4.3.tar.gz
md5=fbc594cef4ba2469882803c12fb5cd51
sha512=2f93d42591e9030f2786f1d9a9783ed92c2cd299ccfd99d0a65f3b5984762f61c1bec3b3f854a557f72ca6c309e9c1eaec27065f0ee1a9cb9dfa4a7ee05dac15

doc/vsrocq-language-server.dm/Dm/Types/index.html

Module Dm.TypesSource

Sourcetype sentence_id = Stateid.t
Sourcetype sentence_id_set = Stateid.Set.t
Sourcemodule RangeList : sig ... end
Sourcetype exec_overview = {
  1. prepared : RangeList.t;
  2. processing : RangeList.t;
  3. processed : RangeList.t;
}
Sourceval empty_overview : exec_overview
Sourcemodule Quickfix : sig ... end
Sourcetype text_edit = Protocol.LspWrapper.Range.t * string
Sourcetype error = {
  1. code : Jsonrpc.Response.Error.Code.t option;
  2. message : string;
}
Sourcetype 'a log =
  1. | Log : 'a -> 'a log
Sourcetype feedback_message = Feedback.level * Loc.t option * Quickfix.t list * Pp.t
Sourcetype document_id = int
Sourcetype feedback_data = Feedback.route_id * sentence_id * feedback_message
Sourcetype rocq_feedback_listener = int
Sourcetype feedback_pipe = {
  1. doc_id : document_id;
  2. rocq_feeder : rocq_feedback_listener;
  3. sel_feedback_queue : feedback_data Queue.t;
  4. sel_cancellation_handle : Sel.Event.cancellation_handle;
}
Sourcetype sentence_checking_result =
  1. | Success of Vernacstate.t option
  2. | Failure of Pp.t Loc.located * Quickfix.t list option * Vernacstate.t option
Sourcetype document_updates = (sentence_id * sentence_checking_result) list
Sourcetype ('state, 'event) handled_event = {
  1. state : 'state option;
  2. events : 'event Sel.Event.t list;
  3. update_view : bool;
  4. notification : Protocol.ExtProtocol.Notification.Server.t option;
}
Sourceval make_handled_event : ?state:'a -> ?events:'b Sel.Event.t list -> ?update_view:bool -> ?notification:Protocol.ExtProtocol.Notification.Server.t -> unit -> ('a, 'b) handled_event
Sourceval lift_handled_event : ('a option -> 'b option) -> ('c Sel.Event.t list -> 'd Sel.Event.t list) -> ('a, 'c) handled_event -> ('b, 'd) handled_event