-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathDeadModules.ml
44 lines (40 loc) · 1.48 KB
/
DeadModules.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
let active () =
(* When transitive reporting is off, the only dead modules would be empty modules *)
RunConfig.runConfig.transitive
let table = Hashtbl.create 1
let markDead ~isType ~loc path =
if active () then
let moduleName = path |> Common.Path.toModuleName ~isType in
match Hashtbl.find_opt table moduleName with
| Some _ -> ()
| _ -> Hashtbl.replace table moduleName (false, loc)
let markLive ~isType ~(loc : Location.t) path =
if active () then
let moduleName = path |> Common.Path.toModuleName ~isType in
match Hashtbl.find_opt table moduleName with
| None -> Hashtbl.replace table moduleName (true, loc)
| Some (false, loc) -> Hashtbl.replace table moduleName (true, loc)
| Some (true, _) -> ()
let checkModuleDead ~fileName:pos_fname moduleName =
if active () then
match Hashtbl.find_opt table moduleName with
| Some (false, loc) ->
Hashtbl.remove table moduleName;
(* only report once *)
let loc =
if loc.loc_ghost then
let pos =
{Lexing.pos_fname; pos_lnum = 0; pos_bol = 0; pos_cnum = 0}
in
{Location.loc_start = pos; loc_end = pos; loc_ghost = false}
else loc
in
Log_.warning ~loc
(Common.DeadModule
{
message =
Format.asprintf "@{<info>%s@} %s"
(moduleName |> Name.toInterface |> Name.toString)
"is a dead module as all its items are dead.";
})
| _ -> ()