Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
rest_parameters_new_Function_support.js
blob: 30e4e05b87221daa8fdd9ee7c8acfa1a9932ff3b [
file
] [
log
] [
blame
]
function
test
()
{
return
new
Function
(
"a"
,
"...b"
,
"return b instanceof Array && a+b === 'foobar,baz';"
)(
'foo'
,
'bar'
,
'baz'
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);