Source code
Revision control
Copy as Markdown
Other Tools
Object.defineProperty(Array.prototype, "2", {
set: function () {}
});
async function* f() {
yield {};
}
var x = f();
x.next();
x.next();
x.next();
Object.defineProperty(Array.prototype, "2", {
set: function () {}
});
async function* f() {
yield {};
}
var x = f();
x.next();
x.next();
x.next();