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