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 for (var v of expr) { } is emitted as..
for (var _i = 0, _a = expr; _i < _a.length; _i++) { var v = _a[_i]; }
then shouldn't HTMLCollections be allowed since were just looping over the indexes?
The text was updated successfully, but these errors were encountered:
This looks like a dupe of #2695. It should be fixed in the TS 1.6
Sorry, something went wrong.
No branches or pull requests
If for (var v of expr) { } is emitted as..
for (var _i = 0, _a = expr; _i < _a.length; _i++) {
var v = _a[_i];
}
then shouldn't HTMLCollections be allowed since were just looping over the indexes?
The text was updated successfully, but these errors were encountered: