bug1390082-2.js (248B)
1 Object.prototype.set = function () {}; 2 let f = async function* () { 3 yield; 4 }; 5 let x = f(); 6 x.next(); 7 x.next().then(function () { 8 x.next(); 9 }); 10 Object.defineProperty(Array.prototype, "0", { 11 get: function () { 12 return 1; 13 } 14 });