mirror of https://github.com/tc39/test262.git
24 lines
571 B
JavaScript
24 lines
571 B
JavaScript
// Copyright (C) 2019 Ecma International. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-object.preventextensions
|
|
description: >
|
|
Object.preventExtensions throws if O.[[PreventExtensions]]() returns false.
|
|
info: |
|
|
Object.preventExtensions ( O )
|
|
...
|
|
2. Let status be ? O.[[PreventExtensions]]().
|
|
3. If status is false, throw a TypeError exception.
|
|
---*/
|
|
|
|
const p = new Proxy({}, {
|
|
preventExtensions() {
|
|
return false;
|
|
},
|
|
});
|
|
|
|
assert.throws(TypeError, () => {
|
|
Object.preventExtensions(p);
|
|
});
|