length.js (442B)
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.3 5 description: > 6 Reflect.defineProperty.length value and property descriptor 7 includes: [propertyHelper.js] 8 features: [Reflect] 9 ---*/ 10 11 verifyProperty(Reflect.defineProperty, "length", { 12 value: 3, 13 writable: false, 14 enumerable: false, 15 configurable: true 16 }); 17 18 reportCompare(0, 0);