Sign in
webkit
/
WebKit
/
53c0a6bd89204da525ab0ecc516f8067861dc602
/
.
/
JSTests
/
stress
/
adhoc-setter-frame-should-emit-setlocal-again.js
blob: 9898e780a97108f81f8f37346cc6d501f9b16168 [
file
] [
log
] [
blame
]
function
X
(){}
X
.
prototype
.
__defineSetter__
(
'f'
,
function
*
()
{
arguments
;
});
function
foo
(
o
)
{
i
+
''
;
for
(
var
i
=
0
;
i
<
1000
;
++
i
)
{
o
.
f
=
0
;
}
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
1000
;
++
i
)
{
foo
(
new
X
());
}