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
If the script looks like:
cond = ... while cond: ...
It works well. But if the script looks like:
cond1 = ... if cond1: cond2 = ... while cond2: ....
It cannot pass the stmt checking for the op.While().
cc @gramalingam
The text was updated successfully, but these errors were encountered:
Handle loops in analysis of assigned vars (#925)
4e7e421
The analysis function "assigned_vars" was not handling loops. Fix this. Should fix issue #879 See also PR #909
I think this should work now? I will close it. Please reopen if there is any issue, thanks!
Sorry, something went wrong.
No branches or pull requests
If the script looks like:
It works well. But if the script looks like:
It cannot pass the stmt checking for the op.While().
cc @gramalingam
The text was updated successfully, but these errors were encountered: