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
Given the following example
class Main def main(): void let arr = [1, 2, 3] in repeat i <- |arr| let fn = \() -> print arr[i] in fn()
the closure doesn't capture the array and the i variable in the environment. Same for async
array
i
async
The text was updated successfully, but these errors were encountered:
I believe this is a simple fix, so I'll fix it
Sorry, something went wrong.
src/ir/AST/Util.hs
Merge pull request #147 from EliasC/exhaustive-util
3b867f6
This commit fixes issues #138 and #139, which were caused by missing
closed by @EliasC PR #147
No branches or pull requests
Given the following example
the closure doesn't capture the
array
and thei
variable in the environment. Same forasync
The text was updated successfully, but these errors were encountered: