blob: 3fee7445a6c08958d11a3d57f93e02a6daed1d9d [file] [log] [blame]
description(
"Check that the DFG can handle MakeRope or ValueAdd on all empty strings."
);
function foo(a, b) {
return a + b;
}
function bar() {
return foo("", "");
}
for (var i = 0; i < 100; ++i)
shouldBe("bar()", "\"\"");