Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zth committed Aug 17, 2023
1 parent dadc18d commit eab5d85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- Don't emit object keys in uppercase as namespace. https://github.com/rescript-lang/rescript-vscode/pull/798
- Fix accidental output of extra `|` when producing exhaustive switch code for polyvariants. https://github.com/rescript-lang/rescript-vscode/pull/805
- Fix JS syntax highlighting in single-line FFI extension points. https://github.com/rescript-lang/rescript-vscode/pull/807
- Fix signature help in uncurried mode. https://github.com/rescript-lang/rescript-vscode/pull/809

## 1.18.0

Expand Down
3 changes: 1 addition & 2 deletions analysis/src/SignatureHelp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
in
let expr (iterator : Ast_iterator.iterator) (expr : Parsetree.expression)
=
(*DumpAst.printExprItem ~pos ~indentation:0 expr |> print_endline;*)
(match expr with
(* Handle pipes, like someVar->someFunc(... *)
| {
Expand All @@ -294,7 +293,7 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
searchForArgWithCursor ~isPipeExpr:true ~args
in
setFound (argAtCursor, exp, extractedArgs)
(* Look for applying idents, like someIdent(...) *)
(* Look for applying idents, like someIdent(...) *)
| {
pexp_desc = Pexp_apply (({pexp_desc = Pexp_ident _} as exp), args);
pexp_loc;
Expand Down

0 comments on commit eab5d85

Please sign in to comment.