Lines Matching refs:function
32 function CheckSequence(builtin, callback) {
35 var callback_wrapper = function() {
42 get: function () { delete array[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; });