mirror of
https://github.com/tc39/test262.git
synced 2025-10-18 14:23:54 +02:00
51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
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: Argument converted using ToPrimitive with hint Number
|
|
info: >
|
|
BigInt.parseInt ( string, radix )
|
|
|
|
The parseInt function produces a BigInt value dictated by
|
|
interpretation of the contents of the string argument according to
|
|
the specified radix.
|
|
|
|
The algorithm is the same as 18.2.5 but with the following edits:
|
|
|
|
* For all cases which result in returning NaN, throw a SyntaxError
|
|
exception.
|
|
* For all cases which result in returning -0, return 0n.
|
|
* Replace the second to last step, which casts mathInt to a Number,
|
|
with casting mathInt to a BigInt.
|
|
|
|
18.2.5 parseInt ( string, radix )
|
|
|
|
1. Let inputString be ? ToString(string).
|
|
features: [BigInt, arrow-function]
|
|
---*/
|
|
|
|
var object = {valueOf() {return 1}};
|
|
assert.throws(SyntaxError, () => BigInt.parseInt(object));
|
|
|
|
var object = {valueOf() {return 1}, toString() {return 0}};
|
|
assert.sameValue(BigInt.parseInt(object), 0n);
|
|
|
|
var object = {valueOf() {return 1}, toString() {return {}}};
|
|
assert.sameValue(BigInt.parseInt(object), 1n);
|
|
|
|
var object = {valueOf() {throw new Test262Error()}, toString() {return 1}};
|
|
assert.sameValue(BigInt.parseInt(object), 1n);
|
|
|
|
var object = {toString() {return 1}};
|
|
assert.sameValue(BigInt.parseInt(object), 1n);
|
|
|
|
var object = {valueOf() {return {}}, toString() {return 1}};
|
|
assert.sameValue(BigInt.parseInt(object), 1n);
|
|
|
|
var object = {valueOf() {return 1}, toString() {throw new Test262Error()}};
|
|
assert.throws(Test262Error, () => BigInt.parseInt(object));
|
|
|
|
var object = {valueOf() {return {}}, toString() {return {}}};
|
|
assert.throws(TypeError, () => BigInt.parseInt(object));
|