Sign in
webkit
/
WebKit
/
4a12667b4cecb17e84375f8db50c9b2d39b06fe4
/
.
/
JSTests
/
microbenchmarks
/
template-string-array.js
blob: 88b669c49609f0401dc07d94867704656da658c9 [
file
] [
log
] [
blame
]
var
array
=
[
1
,
2
,
3
];
function
test
()
{
return
`
$
{
array
[
0
]},
$
{
array
[
1
]},
$
{
array
[
2
]},
$
{
array
[
0
]},
$
{
array
[
1
]},
$
{
array
[
2
]}`;
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e5
;
++
i
)
test
();