Source code

Revision control

Copy as Markdown

Other Tools

// |reftest| skip-if(!this.uneval)
// Any copyright is dedicated to the Public Domain.
var global = this;
(function() {
function f() {
this.b = function() {};
Object.defineProperty(this, "b", ({
configurable: global.__defineSetter__("", function() {})
}));
}
for (y of [0]) {
_ = new f();
}
})();
uneval(this);
reportCompare(true, true);