Fix rest-member-expression-optimisation fixture (#6116)
This commit is contained in:
parent
b684699f79
commit
2eaff3d01c
@ -21,6 +21,6 @@ function t() {
|
|||||||
|
|
||||||
function t() {
|
function t() {
|
||||||
for (var i = 0; i < arguments.length; i++) {
|
for (var i = 0; i < arguments.length; i++) {
|
||||||
return arguments.length <= i ? undefined : arguments[i];
|
return i < 0 || arguments.length <= i ? undefined : arguments[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user