length.js (439B)
1 // Copyright (C) 2015 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 26.1.10 5 description: > 6 Reflect.isExtensible.length value and property descriptor 7 includes: [propertyHelper.js] 8 features: [Reflect] 9 ---*/ 10 11 verifyProperty(Reflect.isExtensible, "length", { 12 value: 1, 13 writable: false, 14 enumerable: false, 15 configurable: true 16 }); 17 18 reportCompare(0, 0);