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
The translation from Core to Core.Stripped requires that only variables or function symbols be present at the head of an application.
We need to transform
(let x := M in N) Q
to
let x := M in N Q
and e.g.
(case M of { c1 x := N1; c2 x y := N2 }) Q
case M of { c1 x := N1 Q; c2 x y := N2 Q }
The text was updated successfully, but these errors were encountered:
lukaszcz
Successfully merging a pull request may close this issue.
The translation from Core to Core.Stripped requires that only variables or function symbols be present at the head of an application.
We need to transform
to
and e.g.
to
The text was updated successfully, but these errors were encountered: