TypeScript/tests/cases/conformance/es6/for-ofStatements/for-of21.ts
2017-02-24 17:48:06 -08:00

17 lines
266 B
TypeScript

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