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
eg. record Foo = { abcDef : ... } becomes data Foo = Foo { fooAbcdef :: ... }
record Foo = { abcDef : ... }
data Foo = Foo { fooAbcdef :: ... }
The text was updated successfully, but these errors were encountered:
https://github.com/ambiata/machinator/blob/929e0dcc984d42cca283b78a8f0f689d3aeddf55/machinator-haskell/src/Machinator/Haskell/TH/Types.hs#L54
This function is duplicated in projector when it should be exposed from Machinator and called.
Sorry, something went wrong.
No branches or pull requests
eg.
record Foo = { abcDef : ... }
becomesdata Foo = Foo { fooAbcdef :: ... }
The text was updated successfully, but these errors were encountered: