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