Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
JSTests
/
stress
/
strcat-emtpy.js
blob: bf68ea1f1432f0977e0e20a483cc55223f048abe [
file
] [
log
] [
blame
]
function
foo
()
{
"use strict"
;
let a
=
"hello"
+
a
;
return
a
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
try
{
foo
();
}
catch
(
e
)
{
}
}