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