Sign in
webkit
/
WebKit
/
ce49a761c8edae539efa1fa0d316a1f499913ba8
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
template_string
/
template_string.es6
blob: 3e891237b996de7ac22effbf202d16816e3c97e0 [
file
] [
log
] [
blame
]
var
data
=
[
1
,
2
,
3
];
function
fn
()
{
return
`${data[0]} ${data[1] + data[2]}`
;
}
assertEqual
(
fn
(),
'1 5'
);
test
(
fn
);