You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ReScript 11, "uncurried" is true by default (i.e., if not set explicitly in rescript.json).
However, it seems the VSCode plugin still assumes that the default is false.
To test: Create a new project using npm create rescript-app@next with the "Basic" template and add "let f = () => ()" to Demo.res.
Observe CodeLens / tool tips showing the function type as (. unit) => unit.
(tested with the latest prerelease version 1.29.5)
The text was updated successfully, but these errors were encountered:
In ReScript 11, "uncurried" is true by default (i.e., if not set explicitly in rescript.json).
However, it seems the VSCode plugin still assumes that the default is false.
To test: Create a new project using
npm create rescript-app@next
with the "Basic" template and add "let f = () => ()" to Demo.res.Observe CodeLens / tool tips showing the function type as
(. unit) => unit
.(tested with the latest prerelease version 1.29.5)
The text was updated successfully, but these errors were encountered: