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