mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 15:42:51 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
//@target: ES6
|
|
class StringIterator {
|
|
next() {
|
|
return x;
|
|
}
|
|
[Symbol.iterator]() {
|
|
return this;
|
|
}
|
|
}
|
|
|
|
var x: any;
|
|
for (var v of new StringIterator) { } |