2017-09-13 03:38:29 +02:00
|
|
|
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: pending
|
|
|
|
description: BigInt.asUintN.name descriptor
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2017-09-13 03:38:29 +02:00
|
|
|
BigInt.asUintN ( bits, bigint )
|
|
|
|
|
|
|
|
17 ECMAScript Standard Built-in Objects
|
|
|
|
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
features: [BigInt]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
verifyProperty(BigInt.asUintN, "name", {
|
|
|
|
value: "asUintN",
|
|
|
|
enumerable: false,
|
|
|
|
writable: false,
|
|
|
|
configurable: true
|
|
|
|
});
|