mirror of https://github.com/tc39/test262.git
20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
// Copyright (C) 2017 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-bigint-parseint-string-radix
|
|
description: BigInt.parseInt property descriptor
|
|
info: >
|
|
BigInt.parseInt ( string, radix )
|
|
|
|
17 ECMAScript Standard Built-in Objects
|
|
includes: [propertyHelper.js]
|
|
features: [BigInt]
|
|
---*/
|
|
|
|
verifyProperty(BigInt, "parseInt", {
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|