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 7e8eb2c commit 654f6b7Copy full SHA for 654f6b7
tests/test-dirs/locate/exception-at-origin-issue.t
@@ -0,0 +1,32 @@
1
+ $ cat >dune-project <<EOF
2
+ > (lang dune 3.0)
3
+ > EOF
4
+
5
+ $ cat >dune <<EOF
6
+ > (library
7
+ > (name foo))
8
9
10
+ $ cat >foo.ml <<EOF
11
+ > exception Unix_error = Unix.Unix_error
12
13
14
+ $ dune build
15
16
+FIXME: Merlin should jump to stdlib Unix.Unix_error
17
+ $ $MERLIN single locate -look-for ml -position 1:31 \
18
+ > -filename foo.ml <foo.ml
19
+ {
20
+ "class": "return",
21
+ "value": "Already at definition point",
22
+ "notifications": []
23
+ }
24
25
+FIXME: Merlin should jump to stdlib Unix
26
+ $ $MERLIN single locate -look-for ml -position 1:25 \
27
28
29
30
31
32
0 commit comments