blob: 760d1099dfcf9ea6118e725f50efc80fae02bfbc [file] [log] [blame]
load(libdir + "asserts.js");
/*
* Throw a TypeError if the trap sets a non-configurable accessor property that
* doest not have a setter
*/
var target = {};
Object.defineProperty(target, 'foo', {
get: function () {
return 'bar'
},
configurable: false
});
var handler = { set: () => true };
for (let p of [new Proxy(target, handler), Proxy.revocable(target, handler).proxy])
assertThrowsInstanceOf(() => p['foo'] = 'baz', TypeError);