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