blob: 9a2f60e01fc8565d1b19459bd20b790c20ac7d5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (C) 2019 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.preventextensions
description: >
O.[[PreventExtensions]]() returns abrupt completion.
info: |
Object.preventExtensions ( O )
...
2. Let status be ? O.[[PreventExtensions]]().
features: [Proxy]
---*/
var p = new Proxy({}, {
preventExtensions: function() {
throw new Test262Error();
},
});
assert.throws(Test262Error, function() {
Object.preventExtensions(p);
});
reportCompare(0, 0);
|