Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-make-rope-all-empty-strings.js
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()"
,
"\"\""
);