Sign in
webkit
/
WebKit
/
5d02745b8400f22c08ff07eebb5126f6409ceb61
/
.
/
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"
);