Lines Matching refs:toObject
33 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6
34 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6
35 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10
36 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10
42 PASS toObject(sparseArray).reduceRight(function(a,b){ return a + b; }, 0) is 10
44 PASS toObject(sparseArray).reduceRight(function(a,b){ callCount++; }); callCount is 0
46 PASS toObject(sparseArray).reduceRight(function(a,b){ callCount++; }, 0); callCount is 1
52 PASS toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; r…
53 PASS toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; r…
55 PASS toObject([[0,1], [2,3], [4,5]]).reduceRight(function(a,b) {return a.concat(b);}, []) is [4,5,2…
56 PASS toObject([0,1,2,3,4,5]).reduceRight(function(a,b,i) {return a.concat([i,b]);}, []) is [5,5,4,4…