package lsp
LSP protocol implementation in OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
jsonrpc-1.4.0.tbz
sha256=fd138e6c4fcff32c6d15eb66cc9391b7e1183717a6d1a47c688c7f6d320a159f
sha512=567a73b3c10bb59c5a4d4e8291d1aeefdfd34438a95313fba8a485638294ca5fb8034334719631243c304d3328c27afa90dfd564fdb1e7390507a06db3a4ad03
doc/src/lsp.stdune/spawn.ml.html
Source file spawn.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
module Env = struct type t = string array let of_array t = t end external sys_exit : int -> 'a = "caml_sys_exit" let rec file_descr_not_standard fd = assert (not Sys.win32); if (Obj.magic (fd : Unix.file_descr) : int) >= 3 then fd else file_descr_not_standard (Unix.dup fd) let safe_close fd = try Unix.close fd with Unix.Unix_error _ -> () let perform_redirections stdin stdout stderr = let stdin = file_descr_not_standard stdin in let stdout = file_descr_not_standard stdout in let stderr = file_descr_not_standard stderr in Unix.dup2 stdin Unix.stdin; Unix.dup2 stdout Unix.stdout; Unix.dup2 stderr Unix.stderr; safe_close stdin; safe_close stdout; safe_close stderr let spawn ?env ~prog ~argv ?(stdin = Unix.stdin) ?(stdout = Unix.stdout) ?(stderr = Unix.stderr) () = let argv = Array.of_list argv in Pid.of_int ( if Sys.win32 then match env with | None -> Unix.create_process prog argv stdin stdout stderr | Some env -> Unix.create_process_env prog argv env stdin stdout stderr else match Unix.fork () with | 0 -> ( try ignore (Unix.sigprocmask SIG_SETMASK [] : int list); perform_redirections stdin stdout stderr; match env with | None -> Unix.execv prog argv | Some env -> Unix.execve prog argv env with _ -> sys_exit 127 ) | pid -> pid )
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>