asUintN.js (523B)
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 property 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 assert.sameValue(typeof BigInt.asUintN, 'function'); 16 17 verifyProperty(BigInt, "asUintN", { 18 enumerable: false, 19 writable: true, 20 configurable: true 21 }); 22 23 reportCompare(0, 0);