1 2 3 4 5 6 7 8 9 10
Object.defineProperty(Array.prototype, "2", { set: function () {} }); async function* f() { yield {}; } var x = f(); x.next(); x.next(); x.next();