We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@uncurry
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
Example from rescript-webapi:
@val external queueMicrotask: (@uncurry (unit => unit)) => unit = "queueMicrotask"
is reformatted to
@val external queueMicrotask: (@uncurry unit => unit) => unit = "queueMicrotask"
which applies @uncurry incorrectly (giving an "unused attribute" warning in v12/master after I fixed the unused attribute checks in #6643).
The text was updated successfully, but these errors were encountered:
(in uncurried mode only)
Sorry, something went wrong.
This is similar to #6638
shulhi
No branches or pull requests
Example from rescript-webapi:
is reformatted to
which applies
@uncurry
incorrectly (giving an "unused attribute" warning in v12/master after I fixed the unused attribute checks in #6643).The text was updated successfully, but these errors were encountered: