Sign in
webkit
/
WebKit
/
622cae2f48887ded7f52fd4826a323449e0e0795
/
.
/
JSTests
/
microbenchmarks
/
string-slice-empty.js
blob: 4d0d8ed8a8c01dc5aa3479ec058ed96e7c595818 [
file
] [
log
] [
blame
]
function
slice
(
string
,
start
,
end
)
{
return
string
.
slice
(
start
,
end
);
}
noInline
(
slice
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
slice
(
"Cocoa"
,
3
,
3
);