extensibility.js (483B)
1 // Copyright (C) 2016 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-dataview-constructor 6 description: > 7 The DataView constructor is extensible 8 info: | 9 17 ECMAScript Standard Built-in Objects 10 11 Unless specified otherwise, the [[Extensible]] internal slot of a built-in 12 object initially has the value true. 13 ---*/ 14 15 assert.sameValue(Object.isExtensible(DataView), true); 16 17 reportCompare(0, 0);