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