blob: 81e80d5ecade90cb1e35436b01c1ffe1f02934c3 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function toStringLeft(num)
{
return num + 'Cocoa';
}
function toStringRight(num)
{
return 'Cocoa' + num;
}
(function () {
// Hoisting.
for (var i = 0; i < 1e6; ++i) {
toStringLeft(i);
toStringRight(i);
}
}());