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
Data.Lens._Newtype
The usage of Data.Lens._Newtype includes _Newtype in the output, but it compiles incorrectly into:
_Newtype
M.MyModule__Newtype = M.Data_Profunctor_dimap(dictProfunctor)(M.Safe_Coerce_coerce())
where dictProfunctor is undefined in the output lua module. I suppose it should have compiled into something like
dictProfunctor
M.MyModule__Newtype = function (dictProfunctor) return M.Data_Profunctor_dimap(dictProfunctor)(M.Safe_Coerce_coerce()) end
The text was updated successfully, but these errors were encountered:
Most likely it was cc32d90 that has been fixed in develop, I will check.
develop
Sorry, something went wrong.
I have backported the bugix, please test and close the issue if you confirm that bug has gone. Thanks!
Unisay
No branches or pull requests
The usage of
Data.Lens._Newtype
includes_Newtype
in the output, but it compiles incorrectly into:where
dictProfunctor
is undefined in the output lua module.I suppose it should have compiled into something like
The text was updated successfully, but these errors were encountered: