length.js (487B)
1 // Copyright (C) 2017 Josh Wolfe. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 esid: sec-bigint.asuintn 5 description: BigInt.asUintN.length descriptor 6 info: | 7 BigInt.asUintN ( bits, bigint ) 8 9 17 ECMAScript Standard Built-in Objects 10 11 includes: [propertyHelper.js] 12 features: [BigInt] 13 ---*/ 14 15 verifyProperty(BigInt.asUintN, "length", { 16 value: 2, 17 enumerable: false, 18 writable: false, 19 configurable: true 20 }); 21 22 reportCompare(0, 0);