Sign in
webkit
/
WebKit
/
90d3d8c8f60fef9d8d7954e860fe710c0391d8ab
/
.
/
JSTests
/
stress
/
to-this-omission-with-different-strict-modes.js
blob: 2024daca194989944906e87d0053d0d718235c86 [
file
] [
log
] [
blame
]
function
thisA
()
{
return
this
.
a
}
function
thisAStrictWrapper
()
{
'use strict'
;
thisA
.
apply
(
this
);
}
let x
=
false
;
for
(
let j
=
0
;
j
<
1e4
;
j
++)
thisAStrictWrapper
.
call
(
x
);