Home | History | Annotate | Download | only in regress

Lines Matching refs:Array

29 // array functions is specification conform (i.e. [[HasProperty]] might return
33 var array = [1,2,3];
41 Object.defineProperty(array, '1', {
42 get: function () { delete array[1]; },
46 assertTrue(array.hasOwnProperty('1'));
47 builtin.apply(array, [callback_wrapper, 'argument']);
48 assertFalse(array.hasOwnProperty('1'));
52 CheckSequence(Array.prototype.every, function() { return true; });
53 CheckSequence(Array.prototype.filter, function() { return true; });
54 CheckSequence(Array.prototype.forEach, function() { return 0; });
55 CheckSequence(Array.prototype.map, function() { return 0; });
56 CheckSequence(Array.prototype.reduce, function() { return 0; });
57 CheckSequence(Array.prototype.reduceRight, function() { return 0; });
58 CheckSequence(Array.prototype.some, function() { return false; });