blob: d02cf83576de6ce1bc325a4c090e3910b732fa03 [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 property descriptor
info: |
BigInt.asIntN ( bits, bigint )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
assert.sameValue(typeof BigInt.asIntN, 'function');
verifyProperty(BigInt, "asIntN", {
enumerable: false,
writable: true,
configurable: true
});