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
Description Currently, there is no support for catch alla statement inside a match (i.e. _ guard inside a branch).
_
Expected behavior This catch-all statement in match should be the entry of each statement if any other case in the match is descarded.
Suggested implementation The problem needs further analysis but it is probably enough to simply rewrite the guard as a true statement evaluation.
true
The text was updated successfully, but these errors were encountered:
simonegazza
No branches or pull requests
Description
Currently, there is no support for catch alla statement inside a match (i.e.
_
guard inside a branch).Expected behavior
This catch-all statement in match should be the entry of each statement if any other case in the match is descarded.
Suggested implementation
The problem needs further analysis but it is probably enough to simply rewrite the guard as a
true
statement evaluation.The text was updated successfully, but these errors were encountered: