blob: ce069600cb511d1a73ed364bdd22b79c642c247d [file] [log] [blame]
description(
"Tests that we do ToString conversions correctly when String.prototype.valueOf is fine but we define our own on the String object itself."
);
function foo(a) {
for (var i = 0; i < 100; ++i)
a = new String(a);
return a;
}
var argument = new String("hello");
for (var i = 0; i < 150; ++i) {
if (i == 100) {
argument = new String("hello");
argument.valueOf = function() { return 42; }
}
shouldBe("\"\" + foo(argument)", "\"hello\"");
}