blob: ecc53bbcca8cc3eccdc550db8200e38d3d3b0d64 [file] [log] [blame]
description(
"Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
);
function foo(a) {
for (var i = 0; i < 100; ++i)
a = new String(a);
return a;
}
for (var i = 0; i < 100; ++i)
shouldBe("\"\" + foo(42)", "\"42\"");