Lines Matching refs:callCount
43 PASS sparseArray.reduceRight(function(a,b){ callCount++; }); callCount is 0
44 PASS toObject(sparseArray).reduceRight(function(a,b){ callCount++; }); callCount is 0
45 PASS sparseArray.reduceRight(function(a,b){ callCount++; }, 0); callCount is 1
46 PASS toObject(sparseArray).reduceRight(function(a,b){ callCount++; }, 0); callCount is 1
47 PASS [0,1,2,3,4].reduceRight(function(a,b){ callCount++; }, 0); callCount is 5
48 PASS [0,1,2,3,4].reduceRight(function(a,b){ callCount++; }); callCount is 4
49 …duceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount…
50 …ceRight(function(a,b, i, thisObj){ thisObj.length = 1; callCount++; return a + b; }, 0); callCount…
51 …duceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; }, 0); callCount…
52 …duceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount…
53 …duceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; }, 0); callCount…