summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/plain-object-to-string.js
blob: 8af972bb4af4f8c16b597dbe1298a67a1c7f34a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Test for OrdinaryToPrimitive called on a plain object with hint "string".

function assertStr(o, s) {
  assertEq(String(o), s);
}
function test() {
  assertStr({x: 1}, "[object Object]");
  assertStr({[Symbol.toStringTag]: "Foo"}, "[object Foo]");
  assertStr({toString() { return 123; }}, "123");
  assertStr({toString: Math.abs}, "NaN");
  assertStr({x: "hello", toString() { return this.x; }}, "hello");

  let c = 0;
  let fun = () => "hi-" + ++c;
  assertStr({toString: fun}, "hi-1");
  assertStr({toString: "foo", valueOf: fun}, "hi-2");
  assertStr({toString() { return {}; }, valueOf: fun}, "hi-3");

  let proto = {};
  proto[Symbol.toStringTag] = null;
  assertStr(Object.create(proto), "[object Object]");
  proto[Symbol.toStringTag] = "Bar";
  assertStr(Object.create(proto), "[object Bar]");
}
test();