mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
17 lines
245 B
TypeScript
17 lines
245 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;
|
|
} |