Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Reflect_Reflect.apply.js
blob: 4bba00f498c00b2572dd60821030a367e0a18786 [
file
] [
log
] [
blame
]
function
test
()
{
return
Reflect
.
apply
(
Array
.
prototype
.
push
,
[
1
,
2
],
[
3
,
4
,
5
])
===
5
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);