Sign in
webkit
/
WebKit
/
6a59c200745aa2ef26b1e56c44297ddf7c28ff78
/
.
/
JSTests
/
es6
/
Reflect_Reflect.construct_creates_instance_from_newTarget_argument.js
blob: 246cd0bc93f3c6d1049c7688727a6fe82a365194 [
file
] [
log
] [
blame
]
function
test
()
{
function
F
(){}
return
Reflect
.
construct
(
function
(){},
[],
F
)
instanceof F
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);