blob: 8d7436ebf6ba00be3d7156dfc8f86f8c395099ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Objects whose specified property is not configurable satisfy the assertion.
includes: [propertyHelper.js]
---*/
var obj = {};
Object.defineProperty(obj, 'a', {
configurable: false
});
verifyNotConfigurable(obj, 'a');
reportCompare(0, 0);
|