Find and remove dead code and unused APIs in OCaml projects
1(** Occurrence checking and classification for symbols *)
2
3open Types
4
5val check_bulk :
6 backend:Merlin.t ->
7 cache:Cache.t ->
8 string list ->
9 string ->
10 symbol_info list ->
11 occurrence_info list
12(** [check_bulk ~backend ~cache exclude_dirs root_dir symbols] checks
13 occurrences for a list of symbols with progress display. *)