mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
* fix RHS of for..of loop not evaluated when LHS is array binding element with OmittedExpression * expand widened type check * add more test cases * update code with suggestions * Make test target es2015 Co-authored-by: Andrew Branch <andrew@wheream.io>
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
"use strict";
|
|
exports.__esModule = true;
|
|
exports.main = void 0;
|
|
function main() {
|
|
for (var _i = 0, doesNotExist_1 = doesNotExist; _i < doesNotExist_1.length; _i++) {
|
|
var _a = doesNotExist_1[_i];
|
|
}
|
|
}
|
|
exports.main = main;
|