blob: c6602071d5c60e304d68d4f713dfaf530d2650f6 [file] [log] [blame]
// 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.asIntN.name descriptor
info: |
BigInt.asIntN ( bits, bigint )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
verifyProperty(BigInt.asIntN, "name", {
value: "asIntN",
enumerable: false,
writable: false,
configurable: true
});