Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Reflect_Reflect.construct_sets_new.target_meta_property.js
blob: e6990037788ae43c03f5f387375fb9c1d7869601 [
file
] [
log
] [
blame
]
function
test
()
{
return
Reflect
.
construct
(
function
(
a
,
b
,
c
)
{
if
(
new
.
target
===
Object
)
{
this
.
qux
=
a
+
b
+
c
;
}
},
[
"foo"
,
"bar"
,
"baz"
],
Object
).
qux
===
"foobarbaz"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);