blob: 87277dbe16d5197e196f32b63571f94620b2304a [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-setprototypeof-v
description: >
Return abrupt from IsExtensible(target)
info: |
[[SetPrototypeOf]] (V)
10. Let extensibleTarget be ? IsExtensible(target).
features: [Proxy]
---*/
var target = new Proxy({}, {
isExtensible: function() {
throw new Test262Error();
}
});
var proxy = new Proxy(target, {
setPrototypeOf: function() {
return true;
}
});
assert.throws(Test262Error, function() {
Object.setPrototypeOf(proxy, {});
});