-
Notifications
You must be signed in to change notification settings - Fork 241
Add reproduction for some locate issues #1930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
voodoos
wants to merge
6
commits into
ocaml:main
Choose a base branch
from
voodoos:state-of-jump-to-def
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
943c6c6
Add a reproduction case for #1580 and #1588
voodoos 0b9d677
Add a test illustrating issue #1610
voodoos 4fde4b5
Add a test illustrating issue ocaml/merlin#1610
voodoos cb03c6b
Illustrate issue #1595
voodoos 9d66d17
Add a recovery layer around type_argument.
voodoos 527d4ba
Add a test illustration issue #1929
voodoos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module Foo = struct | ||
type t = { foo : int; bar : int } | ||
|
||
let foo = "hello" | ||
end | ||
|
||
let _ = | ||
let foo = 10 in | ||
let bar = 10 in | ||
({ Foo.foo; bar } : Foo.t) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5408,7 +5408,7 @@ and type_label_exp create env loc ty_expected | |
if is_poly then check_univars env "field value" arg label.lbl_arg vars; | ||
(lid, label, {arg with exp_type = instance arg.exp_type}) | ||
|
||
and type_argument ?explanation ?recarg env sarg ty_expected' ty_expected = | ||
and type_argument_ ?explanation ?recarg env sarg ty_expected' ty_expected = | ||
(* ty_expected' may be generic *) | ||
let no_labels ty = | ||
let ls, tvar = list_labels env ty in | ||
|
@@ -5524,6 +5524,36 @@ and type_argument ?explanation ?recarg env sarg ty_expected' ty_expected = | |
unify_exp ~sexp:sarg env texp ty_expected; | ||
texp | ||
|
||
and type_argument ?explanation ?recarg env sarg ty_expected' ty_expected = | ||
Msupport.with_saved_types | ||
~warning_attribute:sarg.pexp_attributes ?save_part:None | ||
(fun () -> | ||
let saved = save_levels () in | ||
try | ||
type_argument_ ?explanation ?recarg env sarg ty_expected' ty_expected | ||
with exn -> | ||
Msupport.erroneous_type_register ty_expected; | ||
raise_error exn; | ||
set_levels saved; | ||
let loc = sarg.pexp_loc in | ||
{ | ||
exp_desc = Texp_ident | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WDYT about extracting the |
||
(Path.Pident (Ident.create_local "*type-error*"), | ||
Location.mkloc (Longident.Lident "*type-error*") loc, | ||
{ Types. | ||
val_type = ty_expected; | ||
val_kind = Val_reg; | ||
val_loc = loc; | ||
val_attributes = []; | ||
val_uid = Uid.internal_not_actually_unique; | ||
}); | ||
exp_loc = loc; | ||
exp_extra = []; | ||
exp_type = ty_expected; | ||
exp_env = env; | ||
exp_attributes = Msupport.recovery_attributes sarg.pexp_attributes; | ||
}) | ||
|
||
and type_application env funct sargs = | ||
(* funct.exp_type may be generic *) | ||
let result_type omitted ty_fun = | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
$ cat >dune-project <<'EOF' | ||
> (lang dune 3.0) | ||
> EOF | ||
|
||
$ mkdir dep | ||
$ cat >dep/dep.ml <<'EOF' | ||
> let txt = "Hello!" | ||
> EOF | ||
|
||
$ mkdir exe | ||
$ cat >exe/main.ml << 'EOF' | ||
> print_endline Dep.txt | ||
> EOF | ||
|
||
$ cat >exe/dune << 'EOF' | ||
> (executable | ||
> (name main)) | ||
> (copy_files# %{project_root}/dep/*.ml) | ||
> EOF | ||
|
||
$ dune exec ./exe/main.exe | ||
Hello! | ||
|
||
$ $MERLIN single errors -filename exe/main.ml <exe/main.ml | jq '.value' | ||
[] | ||
|
||
FIXME: Dune should also provide a configuration for the original sources | ||
$ $MERLIN single errors -filename dep/dep.ml <dep/dep.ml | jq '.value' | ||
[ | ||
{ | ||
"type": "config", | ||
"sub": [], | ||
"valid": true, | ||
"message": "No config found for file dep/dep.ml. Try calling 'dune build'." | ||
} | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
Issue #1580: | ||
|
||
$ cat >test.ml << 'EOF' | ||
> module type S = sig | ||
> val foo : unit -> ('a -> 'a -> bool) -> unit | ||
> end | ||
> | ||
> module F (M : S) = struct | ||
> let z () = M.foo () compare | ||
> end | ||
> EOF | ||
|
||
$ $MERLIN single errors -filename test.ml <test.ml | ||
{ | ||
"class": "return", | ||
"value": [ | ||
{ | ||
"start": { | ||
"line": 6, | ||
"col": 22 | ||
}, | ||
"end": { | ||
"line": 6, | ||
"col": 29 | ||
}, | ||
"type": "typer", | ||
"sub": [], | ||
"valid": true, | ||
"message": "The value compare has type 'a -> 'a -> int | ||
but an expression was expected of type 'a -> 'a -> bool | ||
Type int is not compatible with type bool" | ||
} | ||
], | ||
"notifications": [] | ||
} | ||
|
||
The typing recovery allows Merlin to perform the correct jump here: | ||
|
||
$ $MERLIN single locate -position 6:16 \ | ||
> -filename test.ml <test.ml | jq '.value' | ||
{ | ||
"file": "$TESTCASE_ROOT/test.ml", | ||
"pos": { | ||
"line": 2, | ||
"col": 6 | ||
} | ||
} | ||
|
||
|
||
$ $MERLIN single locate -position 6:25 \ | ||
> -filename test.ml <test.ml | jq '.value' | ||
{ | ||
"file": "lib/ocaml/stdlib.mli", | ||
"pos": { | ||
"line": 162, | ||
"col": 9 | ||
} | ||
} | ||
|
||
Issue #1588: | ||
|
||
$ cat >test.ml <<'EOF' | ||
> let test ~f:(_ : unit -> unit) = () | ||
> type t = F : { f : unit -> 'fn } -> t | ||
> let call (F { f }) = test ~f | ||
> EOF | ||
|
||
$ $MERLIN single locate -position 3:23 \ | ||
> -filename test.ml <test.ml | jq '.value' | ||
{ | ||
"file": "$TESTCASE_ROOT/test.ml", | ||
"pos": { | ||
"line": 1, | ||
"col": 4 | ||
} | ||
} | ||
|
||
$ $MERLIN single errors -filename test.ml <test.ml | ||
{ | ||
"class": "return", | ||
"value": [ | ||
{ | ||
"start": { | ||
"line": 3, | ||
"col": 27 | ||
}, | ||
"end": { | ||
"line": 3, | ||
"col": 28 | ||
}, | ||
"type": "typer", | ||
"sub": [], | ||
"valid": true, | ||
"message": "The value f has type unit -> $fn but an expression was expected of type | ||
unit -> unit | ||
Type $fn is not compatible with type unit | ||
Hint: $fn is an existential type bound by the constructor F." | ||
} | ||
], | ||
"notifications": [] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
$ cat >main.ml <<EOF | ||
> module type T = sig | ||
> type 'a t | ||
> end | ||
> | ||
> module M (T : T) = struct | ||
> type t = int T.t | ||
> end | ||
> | ||
> module T = struct type 'a t end | ||
> | ||
> type t = M(T).t | ||
> EOF | ||
|
||
FIXME: we should jump to the functor's body, not the current definition | ||
$ $MERLIN single locate -look-for ml -position 11:15 \ | ||
> -filename main.ml <main.ml | jq '.value' | ||
{ | ||
"file": "$TESTCASE_ROOT/main.ml", | ||
"pos": { | ||
"line": 11, | ||
"col": 5 | ||
} | ||
} | ||
|
||
The issue appears to reside in "reconstruct identifier". | ||
A fix was attempted in https://github.com/ocaml/merlin/pull/1611. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
$ cat >test.ml <<'EOF' | ||
> module Foo = struct | ||
> type t = | ||
> { foo : int | ||
> ; bar : int | ||
> } | ||
> | ||
> let foo = "hello" | ||
> end | ||
> | ||
> let _ = | ||
> let foo = 10 in | ||
> let bar = 10 in | ||
> ({ Foo.foo; bar } : Foo.t) | ||
> ;; | ||
> EOF | ||
|
||
FIXME: this answer is wrong. The correct value jumping to `foo` line 11 | ||
$ $MERLIN single locate -position 13:10 \ | ||
> -filename test.ml <test.ml | ||
{ | ||
"class": "return", | ||
"value": { | ||
"file": "$TESTCASE_ROOT/test.ml", | ||
"pos": { | ||
"line": 7, | ||
"col": 6 | ||
} | ||
}, | ||
"notifications": [] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the difference between
type_argument
andtype_argument_
? could we find more meaningful names?And it looks strange that we touch to something inside
src/ocaml/typing
? Is this related to type recovery?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh ok! In fact
type_argument_
is the OCaml one andtype_argument
is a wrapper dealing with Merlin specific stuff? Make sense.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly. The same pattern is used for
type_expect
(or something similar)