We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like to be able to write something like
get_structural_ty(lhs, ty_names) >>= (lhs) => get_structural_ty(rhs, ty_names) >>= (rhs) => pure(Ty_lam(lhs, rhs))
however, when refmt is run on this code, it turns out like
get_structural_ty(lhs, ty_names) >>= ((lhs) => get_structural_ty(rhs, ty_names) >>= ((rhs) => pure(Ty_lam(lhs, rhs))))
which is quite a bit less readable.
The text was updated successfully, but these errors were encountered:
Is this reason-tools specific? Or does it happen with refmt in your editor/cli as well? If the later, we should upstream this request to reason repo.
Sorry, something went wrong.
it happens with refmt in my editor, yeah.
No branches or pull requests
I'd like to be able to write something like
however, when refmt is run on this code, it turns out like
which is quite a bit less readable.
The text was updated successfully, but these errors were encountered: