Sign in
webkit
/
WebKit
/
638dc2a5b318b1947a7d7dfea65bd7a046102318
/
.
/
JSTests
/
es6
/
Reflect_Reflect.deleteProperty.js
blob: 819bf382d4acecae8cc22dc17c58c2838913fdc6 [
file
] [
log
] [
blame
]
function
test
()
{
var
obj
=
{
bar
:
456
};
Reflect
.
deleteProperty
(
obj
,
"bar"
);
return
!(
"bar"
in obj
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);