Sign in
webkit
/
WebKit
/
c6a7a2f378a60ecad2c606428f6fc0921528b1a6
/
.
/
JSTests
/
stress
/
inlined-tail-call-in-inlined-setter-should-not-crash-when-getting-value-profile.js
blob: 4e6dee8fcfc49bb1795809beea24982b238a5b2f [
file
] [
log
] [
blame
]
let o
=
{
set
foo
(
x
)
{
'use strict'
;
return
bar
();
}
};
function
bar
()
{
return
20
;
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
o
.
foo
=
20
;