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 b024492 commit ac8cb80Copy full SHA for ac8cb80
analysis/src/Commands.ml
@@ -52,7 +52,7 @@ let completion ~path ~line ~col ~currentFile =
52
let hover ~file ~line ~col ~extra ~package =
53
let pos = Utils.protocolLineColToCmtLoc ~line ~col in
54
match References.locItemForPos ~extra pos with
55
- | None -> Protocol.null
+ | None -> Protocol.null1
56
| Some locItem -> (
57
let isModule =
58
match locItem.locType with
analysis/src/Protocol.ml
@@ -19,6 +19,7 @@ type location = {uri : string; range : range}
19
type documentSymbolItem = {name : string; kind : int; location : location}
20
21
let null = "null"
22
+let null1 = "null1"
23
let null2 = "null2"
24
let null3 = "null3"
25
0 commit comments