blob: 8a378bfbce6e35ea69347993271c1b7890225756 [file] [log] [blame]
//@ runBigIntEnabled
assert = {
sameValue: function (input, expected, message) {
if (input !== expected)
throw new Error(message);
}
};
function testAdd(x, y, z, message) {
assert.sameValue(x + y, z, message);
assert.sameValue(y + x, z, message);
}
testAdd(Object(2n), 1n, 3n, "ToPrimitive: unbox object with internal slot");
let o = {
[Symbol.toPrimitive]: function() {
return 2n;
}
};
testAdd(o, 1n, 3n, "ToPrimitive: @@toPrimitive");
o = {
valueOf: function() {
return 2n;
}
};
testAdd(o, 1n, 3n, "ToPrimitive: valueOf");
o = {
toString: function() {
return 2n;
}
}
testAdd(o, 1n, 3n, "ToPrimitive: toString");