1// Copyright JS Foundation and other contributors, http://js.foundation 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15function func() {} 16 17var bound = func.bind(); 18 19/* original test case from the issue report */ 20if (function() { 21 return func.bind()(0, 0, 0, 0, 0, 0, 0) 22}()); 23 24/* various versions of the issue report */ 25 26/* call the bound function with a lots of args */ 27for (var idx = 0; idx < 50; idx++) { 28 var args = new Array(idx); 29 30 bound.apply(undefined, args); 31 32 delete args; 33} 34 35/* bind the function with multiple args and invoke it */ 36for (var idx = 0; idx < 25; idx++) { 37 var args = new Array(idx); 38 39 func.bind.apply(func, args).apply(undefined, args); 40 41 delete args; 42} 43