package crs
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
A tool for managing inline review comments embedded in source code
Install
dune-project
Dependency
Authors
Maintainers
Sources
crs-0.0.20260307.tbz
sha256=77f77c61e908a6716fa876f5648f662ffaf7e24be4a7889fd6b53121592311bb
sha512=5fc6252650571c4127ebb1e61fecf78c5d4ce35e2832dff47125cda1448e07ea6d4da5e3a9a28643e3491d3594b0ee8857214241f98bd0296ada2c35ea8daa4b
doc/src/crs.stdlib/crs_stdlib.ml.html
Source file crs_stdlib.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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427(********************************************************************************) (* crs - A tool for managing inline review comments embedded in source code *) (* Copyright (C) 2024-2026 Mathieu Barbin <mathieu.barbin@gmail.com> *) (* *) (* This file is part of crs. *) (* *) (* crs is free software; you can redistribute it and/or modify it under the *) (* terms of the GNU Lesser General Public License as published by the Free *) (* Software Foundation either version 3 of the License, or any later version, *) (* with the LGPL-3.0 Linking Exception. *) (* *) (* crs is distributed in the hope that it will be useful, but WITHOUT ANY *) (* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS *) (* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License and *) (* the file `NOTICE.md` at the root of this repository for more details. *) (* *) (* You should have received a copy of the GNU Lesser General Public License *) (* and the LGPL-3.0 Linking Exception along with this library. If not, see *) (* <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively. *) (********************************************************************************) (* Some functions are copied from [Base] version [v0.17] which is released under MIT and may be found at [https://github.com/janestreet/base]. See Base's LICENSE below: ---------------------------------------------------------------------------- The MIT License Copyright (c) 2016--2024 Jane Street Group, LLC <opensource-contacts@janestreet.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ---------------------------------------------------------------------------- When this is the case, we clearly indicate it next to the copied function. *) module Code_error = Code_error module Dyn = Dyn0 module Json = Json module Ordering = Ordering let print pp = Format.printf "%a@." Pp.to_fmt pp let print_dyn dyn = print (Dyn.pp dyn) let phys_equal a b = a == b module Char = struct include Stdlib.Char (* ---------------------------------------------------------------------------- *) (* [is_whitespace] is copied from [Base] (MIT). See notice at the top of the file and project global notice for licensing information. *) let is_whitespace = function | '\t' | '\n' | '\011' (* vertical tab *) | '\012' (* form feed *) | '\r' | ' ' -> true | _ -> false ;; (* ---------------------------------------------------------------------------- *) end module Int = struct include Stdlib.Int let incr = Stdlib.incr let to_dyn = Dyn.int let to_string_hum n = let s = string_of_int n in let len = String.length s in let is_negative = n < 0 in let sign_count = if is_negative then 1 else 0 in let absolute_digit_count = if is_negative then len - 1 else len in let separator_count = absolute_digit_count / 3 in let initial_skip_count = let digit_skip = absolute_digit_count mod 3 in sign_count + if digit_skip > 0 then digit_skip else 3 in let buffer = Buffer.create (len + separator_count) in let rec aux i count = if i < len then if count = 0 then ( Buffer.add_char buffer '_'; aux i 3) else ( Buffer.add_char buffer s.[i]; aux (i + 1) (count - 1)) in aux 0 initial_skip_count; Buffer.contents buffer ;; end module List = struct include Stdlib.ListLabels let equal eq t1 t2 = equal ~eq t1 t2 let exists t ~f = exists ~f t let filter t ~f = filter ~f t let filter_map t ~f = filter_map ~f t (* [filter_mapi] is available in stdlib but only from [5.5]. *) let[@tail_mod_cons] rec filter_mapi f i = function | [] -> [] | x :: l -> let i' = i + 1 in (match f i x with | None -> filter_mapi f i' l | Some v -> v :: filter_mapi f i' l) ;; let filter_mapi l ~f = filter_mapi f 0 l let filter_opt t = filter_map t ~f:Fun.id let find t ~f = find_opt ~f t let find_exn t ~f = Stdlib.List.find f t let for_all t ~f = for_all ~f t (* ---------------------------------------------------------------------------- *) (* [unzip], [groupi] and [group] are copied from [Base] (MIT). See notice at the top of the file and project global notice for licensing information. *) let unzip list = let rec loop list l1 l2 = match list with | [] -> l1, l2 | (x, y) :: tl -> loop tl (x :: l1) (y :: l2) in loop (rev list) [] [] ;; let groupi l ~break = (* We allocate shared position and list references so we can make the inner loop use [[@tail_mod_cons]], and still return back information about position and where in the list we left off. *) let pos = ref 0 in let l = ref l in (* As a result of using local references, our inner loop does not need arguments. *) let[@tail_mod_cons] rec take_group () = match !l with | [] -> assert false | [ _ ] as group -> l := []; group | x :: (y :: _ as tl) -> pos := !pos + 1; l := tl; if break !pos x y then [ x ] else (* Coverage is off in the second part of the expression because the instrumentation breaks [@tail_mod_cons], triggering warning 71. *) x :: (take_group () [@coverage off]) in (* Our outer loop does not need arguments, either. *) let[@tail_mod_cons] rec groups () = if is_empty !l then [] else ( let group = take_group () in (* Coverage is off in the second part of the expression because the instrumentation breaks [@tail_mod_cons], triggering warning 71. *) group :: (groups () [@coverage off])) in (groups () [@nontail]) ;; let group l ~break = groupi l ~break:(fun _ x y -> break x y) [@nontail] (* ---------------------------------------------------------------------------- *) let hd = function | [] -> None | hd :: _ -> Some hd ;; let hd_exn = Stdlib.List.hd let iter t ~f = iter ~f t let map t ~f = map ~f t let mem t x ~equal = exists t ~f:(fun y -> equal x y) let sort t ~compare = sort t ~cmp:compare let sort_and_group t ~compare = sort t ~compare |> group ~break:(fun t1 t2 -> 0 <> compare t1 t2) ;; end module Option = struct include Stdlib.Option let bind t ~f = bind t f let iter t ~f = iter f t let map t ~f = map f t end module Ref = struct let set_temporarily t a ~f = let x = !t in t := a; Fun.protect ~finally:(fun () -> t := x) f ;; end module Result = struct include Stdlib.Result let bind t ~f = bind t f let iter t ~f = iter f t end module String = struct include Stdlib.StringLabels let chop_prefix t ~prefix = if starts_with t ~prefix then ( let prefix_len = length prefix in Some (StringLabels.sub t ~pos:prefix_len ~len:(length t - prefix_len))) else None ;; let concat t ~sep = concat ~sep t let is_empty t = length t = 0 let lsplit2 t ~on = match index_opt t on with | None -> None | Some i -> Some (sub t ~pos:0 ~len:i, sub t ~pos:(i + 1) ~len:(length t - i - 1)) ;; let split t ~on = split_on_char ~sep:on t let strip = trim let to_dyn = Dyn.string let to_string t = t (* ---------------------------------------------------------------------------- *) (* The following functions are copied from [Base] (MIT). See notice at the top of the file and project global notice for licensing information. *) let rfindi t ~f = let rec loop i = if i < 0 then None else if f i t.[i] then Some i else loop (i - 1) in let pos = length t - 1 in (loop pos [@nontail]) ;; let last_non_drop ~drop t = rfindi t ~f:(fun _ c -> not (drop c)) [@nontail] let rstrip ?(drop = Char.is_whitespace) t = match last_non_drop t ~drop with | None -> "" | Some i -> if i = length t - 1 then t else sub t ~pos:0 ~len:(i + 1) ;; let lfindi ?(pos = 0) t ~f = let n = length t in let rec loop i = if i = n then None else if f i t.[i] then Some i else loop (i + 1) in (loop pos [@nontail]) ;; let first_non_drop ~drop t = lfindi t ~f:(fun _ c -> not (drop c)) [@nontail] let lstrip ?(drop = Char.is_whitespace) t = match first_non_drop t ~drop with | None -> "" | Some 0 -> t | Some n -> sub t ~pos:n ~len:(length t - n) ;; (* ---------------------------------------------------------------------------- *) (* The function [split_lines] below was copied from [Base.String0.split_lines] version [v0.17] which is released under MIT and may be found at [https://github.com/janestreet/base]. The changes we made were minimal: - Changed references to [Char0] to [Char]. See Base's LICENSE below: ---------------------------------------------------------------------------- The MIT License Copyright (c) 2016--2024 Jane Street Group, LLC <opensource-contacts@janestreet.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *) let split_lines = let back_up_at_newline ~t ~pos ~eol = pos := !pos - if !pos > 0 && Char.equal t.[!pos - 1] '\r' then 2 else 1; eol := !pos + 1 in fun t -> let n = length t in if n = 0 then [] else ( (* Invariant: [-1 <= pos < eol]. *) let pos = ref (n - 1) in let eol = ref n in let ac = ref [] in (* We treat the end of the string specially, because if the string ends with a newline, we don't want an extra empty string at the end of the output. *) if Char.equal t.[!pos] '\n' then back_up_at_newline ~t ~pos ~eol; while !pos >= 0 do if not (Char.equal t.[!pos] '\n') then decr pos else ( (* Because [pos < eol], we know that [start <= eol]. *) let start = !pos + 1 in ac := sub t ~pos:start ~len:(!eol - start) :: !ac; back_up_at_newline ~t ~pos ~eol) done; sub t ~pos:0 ~len:!eol :: !ac) ;; (* ---------------------------------------------------------------------------- *) let substr_replace_all t ~pattern ~with_ = let pattern_len = length pattern in if pattern_len = 0 then t else ( let t_len = length t in let buf = Buffer.create (t_len + (t_len / 2)) in let rec loop pos = if pos > t_len - pattern_len then Buffer.add_substring buf t pos (t_len - pos) else ( let found = let rec check i = if i = pattern_len then true else if unsafe_get t (pos + i) = unsafe_get pattern i then check (i + 1) else false in check 0 in if found then ( Buffer.add_string buf with_; loop (pos + pattern_len)) else ( Buffer.add_char buf (unsafe_get t pos); loop (pos + 1))) in loop 0; Buffer.contents buf) ;; end let require cond = if not cond then failwith "Required condition does not hold." let require_does_raise f = match f () with | _ -> Code_error.raise "Did not raise." [] | exception e -> print_endline (Printexc.to_string e) ;; module With_equal_and_dyn = struct module type S = sig type t val equal : t -> t -> bool val to_dyn : t -> Dyn.t end end let require_equal (type a) (module M : With_equal_and_dyn.S with type t = a) (v1 : a) (v2 : a) = if not (M.equal v1 v2) then Code_error.raise "Values are not equal." [ "v1", v1 |> M.to_dyn; "v2", v2 |> M.to_dyn ] ;; let require_not_equal (type a) (module M : With_equal_and_dyn.S with type t = a) (v1 : a) (v2 : a) = if M.equal v1 v2 then Code_error.raise "Values are equal." [ "v1", v1 |> M.to_dyn; "v2", v2 |> M.to_dyn ] ;; let print_endline = Stdlib.print_endline
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>