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