Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-to-string-on-value.js
blob: 0008e032fff70bcf0632f123f7392c7d3a9c0ea6 [
file
] [
log
] [
blame
]
description
(
"Tests that ToString on a possible-non-cell value works."
);
function
foo
(
a
,
o
)
{
return
[
a
,
String
(
o
)];
}
for
(
var
i
=
0
;
i
<
100
;
++
i
)
shouldBe
(
"\"\" + foo(\"foo\", i % 2 ? \"hello\" : 42)"
,
i
%
2
?
"\"foo,hello\""
:
"\"foo,42\""
);