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
Converging Case branches above a foreach loop cause an infinite loop
The text was updated successfully, but these errors were encountered:
This results in
function noExitFromLoop(one, two, three) { var _7_col, _7_it, _7_length, _sw_17, item; _sw_17 = one; if (_sw_17 === "update") { _7_it = 0; _7_col = three; _7_length = _7_col.length; while (true) { if (_7_it < _7_length) { item = _7_col[_7_it]; _7_it++; } else { break; } } } else { if (_sw_17 === "delete") { one = "foo" _7_it = 0; _7_col = three; _7_length = _7_col.length; // Infinite loop! while (true) { if (_7_it < _7_length) { item = _7_col[_7_it]; _7_it++; } } } else { } } }
Sorry, something went wrong.
No branches or pull requests
Converging Case branches above a foreach loop cause an infinite loop
The text was updated successfully, but these errors were encountered: