Sign in
webkit
/
WebKit
/
8438b3acecf76ebd57885118ed5c8bdf9f2fc05e
/
.
/
JSTests
/
es6
/
Reflect_Reflect.setPrototypeOf.js
blob: 1adbdcf788425f5b3deaa622d94380aecd711b21 [
file
] [
log
] [
blame
]
function
test
()
{
var
obj
=
{};
Reflect
.
setPrototypeOf
(
obj
,
Array
.
prototype
);
return
obj instanceof
Array
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);