Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
setter-same-base-and-rhs-invalid-assertion-inside-access-case.js
blob: 095135791fc21ff3ed0b8e2313d2dfea38738c88 [
file
] [
log
] [
blame
]
function
ctor
()
{}
ctor
.
prototype
.
__defineSetter__
(
"f"
,
function
()
{
});
function
theFunc
(
o
)
{
o
.
f
=
o
;
}
noInline
(
theFunc
);
function
run
(
o
)
{
theFunc
(
o
);
}
for
(
let i
=
0
;
i
<
100000
;
++
i
)
{
run
(
new
ctor
())
let o
=
new
ctor
();
o
.
g
=
54
;
run
(
o
);
}