package lsp
LSP protocol implementation in OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
jsonrpc-1.4.1.tbz
sha256=cee8371e7048e24c90e916c373ef6f3aba6f474d8a5fcf507ab6650fd8575eeb
sha512=150ebf71d3484d3beec1a145877cf30d84581bd072dd20159e878ed07cc4fc647b019b98bb0c9fede839b87f7bd13de4a64b534c0760a2ec57d0e4a4deac6f0f
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)"
>