Sign in
webkit
/
WebKit
/
ed630b29b813d21f8c4da5c865326dddf8e25d5d
/
.
/
JSTests
/
microbenchmarks
/
forward-varargs-check-shouldnt-escape.js
blob: 59c888b5678b3684eb38f5b5d8749dc866ad42f0 [
file
] [
log
] [
blame
]
function
g
()
{
}
noInline
(
g
);
function
foo
()
{
g
.
apply
(
undefined
,
arguments
);
this
;
// Check(OtherUse:@this). This should not escape arguments.
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
100000
;
++
i
)
foo
.
call
(
undefined
);