Skip to content

Commit ac8cb80

Browse files
committed
null -> null1
1 parent b024492 commit ac8cb80

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

analysis/src/Commands.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ let completion ~path ~line ~col ~currentFile =
5252
let hover ~file ~line ~col ~extra ~package =
5353
let pos = Utils.protocolLineColToCmtLoc ~line ~col in
5454
match References.locItemForPos ~extra pos with
55-
| None -> Protocol.null
55+
| None -> Protocol.null1
5656
| Some locItem -> (
5757
let isModule =
5858
match locItem.locType with

analysis/src/Protocol.ml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ type location = {uri : string; range : range}
1919
type documentSymbolItem = {name : string; kind : int; location : location}
2020

2121
let null = "null"
22+
let null1 = "null1"
2223
let null2 = "null2"
2324
let null3 = "null3"
2425

0 commit comments

Comments
 (0)