Vcaml_test_helpers.Privateinclude module type of Vcaml.Privatemodule Nvim_internal = Nvim_internalmodule Nvim_lock : sig ... endThis module is internal to VCaml. It is used by Client.t to track permission to communicate with Neovim. On each blocking RPC request we receive, we call take and then create a new Client.t with a call_nvim_api_fn that closes over the new Permission_to_run.t. In the event of nested blocking RPC requests, the most recent has exclusive permission to run until it returns, then the previous, etc.
module Source_code_position : sig ... endval notify_nvim_of_error :
_ Vcaml.Client.t ->
here:lexing_position ->
Core.Error.t ->
unit Async.Deferred.tval before_sending_response_hook_for_tests :
(unit -> unit Async.Deferred.t) option Core.refval attach_client :
?stdio_override:(Async.Reader.t * Async.Writer.t) ->
?time_source:Async.Time_source.t ->
Vcaml.Client.Not_connected.t ->
'a Vcaml.Client.Connection_type.t ->
'a Async.Deferred.Or_error.t