summaryrefslogtreecommitdiff
path: root/test/built-ins/BigInt/asUintN/name.js
blob: fc2efebad8e01f4687ce4a89efdc51f82005d427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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
info: >
  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
});