Sign in
webkit
/
WebKit
/
eb01a7e76a5b8904fa6eb36e240d0af2b1bec526
/
.
/
JSTests
/
es6
/
template_strings_toString_conversion.js
blob: 8dddb6243f23b2de6a5ff84caa236c8f5015a250 [
file
] [
log
] [
blame
]
function
test
()
{
var
a
=
{
toString
:
function
()
{
return
"foo"
;
},
valueOf
:
function
()
{
return
"bar"
;
},
};
return
`
$
{
a
}`
===
"foo"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);