Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit 4a1970a

Browse files
committedApr 17, 2021
Add test for "Add support for doc strings when hovering on modules".
1 parent 0e31c13 commit 4a1970a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
 

‎test/src/Hover.res

+14
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,17 @@ module Id = {
88
// ^hov
99
type x = int
1010
}
11+
12+
@ocaml.doc("This module is commented")
13+
module Dep: {
14+
@ocaml.doc("Some doc comment")
15+
let customDouble: int => int
16+
} = {
17+
let customDouble = foo => foo * 2
18+
}
19+
20+
module D = Dep
21+
// ^hov
22+
23+
let cd = D.customDouble
24+
// ^hov

‎test/src/expected/Hover.res.txt

+6
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ Hover src/Hover.res 3:5
77
Hover src/Hover.res 6:7
88
{"contents": "```rescript\nmodule Id = {\n type x = int\n}\n```"}
99

10+
Hover src/Hover.res 19:11
11+
{"contents": "\nThis module is commented\n```rescript\nmodule Dep = {\n let customDouble: int => int\n}\n```"}
12+
13+
Hover src/Hover.res 22:11
14+
{"contents": "```rescript\nint => int\n```\n\nSome doc comment"}
15+

0 commit comments

Comments
 (0)
This repository has been archived.