File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 29
29
- Don't emit object keys in uppercase as namespace. https://github.com/rescript-lang/rescript-vscode/pull/798
30
30
- Fix accidental output of extra ` | ` when producing exhaustive switch code for polyvariants. https://github.com/rescript-lang/rescript-vscode/pull/805
31
31
- Fix JS syntax highlighting in single-line FFI extension points. https://github.com/rescript-lang/rescript-vscode/pull/807
32
+ - Fix signature help in uncurried mode. https://github.com/rescript-lang/rescript-vscode/pull/809
32
33
33
34
## 1.18.0
34
35
Original file line number Diff line number Diff line change @@ -270,7 +270,6 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
270
270
in
271
271
let expr (iterator : Ast_iterator.iterator ) (expr : Parsetree.expression )
272
272
=
273
- (* DumpAst.printExprItem ~pos ~indentation:0 expr |> print_endline;*)
274
273
(match expr with
275
274
(* Handle pipes, like someVar->someFunc(... *)
276
275
| {
@@ -294,7 +293,7 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
294
293
searchForArgWithCursor ~is PipeExpr:true ~args
295
294
in
296
295
setFound (argAtCursor, exp, extractedArgs)
297
- (* Look for applying idents, like someIdent(...) *)
296
+ (* Look for applying idents, like someIdent(...) *)
298
297
| {
299
298
pexp_desc = Pexp_apply (({pexp_desc = Pexp_ident _} as exp), args);
300
299
pexp_loc;
You can’t perform that action at this time.
0 commit comments