Sign in
webkit
/
WebKit
/
41419438b681f832b2c71541303b7213480702be
/
.
/
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
();