File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2929- Don't emit object keys in uppercase as namespace. https://github.com/rescript-lang/rescript-vscode/pull/798
3030- Fix accidental output of extra ` | ` when producing exhaustive switch code for polyvariants. https://github.com/rescript-lang/rescript-vscode/pull/805
3131- 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
3233
3334## 1.18.0
3435
Original file line number Diff line number Diff line change @@ -270,7 +270,6 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
270270 in
271271 let expr (iterator : Ast_iterator.iterator ) (expr : Parsetree.expression )
272272 =
273- (* DumpAst.printExprItem ~pos ~indentation:0 expr |> print_endline;*)
274273 (match expr with
275274 (* Handle pipes, like someVar->someFunc(... *)
276275 | {
@@ -294,7 +293,7 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
294293 searchForArgWithCursor ~is PipeExpr:true ~args
295294 in
296295 setFound (argAtCursor, exp, extractedArgs)
297- (* Look for applying idents, like someIdent(...) *)
296+ (* Look for applying idents, like someIdent(...) *)
298297 | {
299298 pexp_desc = Pexp_apply (({pexp_desc = Pexp_ident _} as exp), args);
300299 pexp_loc;
You can’t perform that action at this time.
0 commit comments