Sign in
webkit
/
WebKit
/
576a979610e4022489e162a6cf99857a249b2267
/
.
/
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"
);