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 two case icons lead to a foreach loop an eternal cycle is produced.
The text was updated successfully, but these errors were encountered:
function badCycle(node) { var _20_col, _20_it, _20_length, _sw_17, child; _sw_17 = node.type; if (_sw_17 === "BlockStatement") { _20_it = 0; _20_col = node.body; _20_length = _20_col.length; while (true) { if (_20_it < _20_length) { child = _20_col[_20_it]; console.log(child) _20_it++; } else { break; } } } else { if (_sw_17 === "Program") { _20_it = 0; _20_col = node.body; _20_length = _20_col.length; while (true) { if (_20_it < _20_length) { child = _20_col[_20_it]; console.log(child) _20_it++; } } } else { return undefined } } }
Sorry, something went wrong.
No branches or pull requests
If two case icons lead to a foreach loop an eternal cycle is produced.
The text was updated successfully, but these errors were encountered: