Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
dfg-del-by-id.js
blob: 66f2f0bd15cd8ea7fd998f555dd90927c4dc87ea [
file
] [
log
] [
blame
]
function
foo
(
o
)
{
return
delete
o
.
f
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
o
=
{
f
:
42
};
var
result
=
foo
(
o
);
if
(
result
!==
true
)
throw
"Error: bad result: "
+
result
;
if
(
"f"
in o
)
throw
"Error: \"f\" still in ok"
;
}