swc/crates/swc_ecma_parser/tests/tsc/ES5For-of34.ts

8 lines
144 B
TypeScript

//@sourcemap: true
//@downlevelIteration: true
function foo() {
return { x: 0 };
}
for (foo().x of ['a', 'b', 'c']) {
var p = foo().x;
}