Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
string-slice.js
blob: 84791e10e7aa5c3fa313b1d8e26d0750fde18e6d [
file
] [
log
] [
blame
] [
edit
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function
slice
(
string
,
start
,
end
)
{
return
string
.
slice
(
start
,
end
);
}
noInline
(
slice
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
slice
(
"Cocoa"
,
2
,
4
);