swc/crates/swc_ecma_parser/tests/tsc/for-of19.ts

17 lines
248 B
TypeScript

//@target: ES6
class Foo { }
class FooIterator {
next() {
return {
value: new Foo,
done: false
};
}
[Symbol.iterator]() {
return this;
}
}
for (var v of new FooIterator) {
v;
}