Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
JSTests
/
stress
/
has-static-property-property-condition-needs-to-check-if-structure-has-property.js
blob: a539951e52ac252d6d0a201decd864f45b4b29ce [
file
] [
log
] [
blame
]
let o
=
{};
let p
=
$vm
.
createStaticCustomValue
();
o
.
__proto__
=
p
;
function
foo
(
o
)
{
return
o
.
testStaticValue
;
}
noInline
(
foo
);
foo
(
o
);
foo
(
o
);
foo
(
o
);
foo
(
o
);
p
.
testStaticValue
=
42
;
for
(
let i
=
0
;
i
<
100
;
++
i
)
{
foo
(
o
);
}