We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40ef51 commit c135a4bCopy full SHA for c135a4b
deadlock/Deadlock.ml
@@ -20,6 +20,12 @@ module Enabled = False
20
let help = "Run deadlock detection"
21
end)
22
23
+module Version = False
24
+ (struct
25
+ let option_name = "-dl-version"
26
+ let help = "Show version and exit"
27
+ end)
28
+
29
module JsonOutput = Self.Filepath
30
(struct
31
let option_name = "-dl-json-output"
deadlock/deadlock_main.ml
@@ -42,7 +42,7 @@ let main () =
42
Profiler.finish ()
43
44
let run () =
45
- if Racer.Version.get () then show_version ()
+ if Deadlock.Version.get () then show_version ()
46
else if Deadlock.Enabled.get () then main ()
47
else ()
48
0 commit comments