summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Iterator/prototype/every/short-circuit-on-false.js
blob: 15b144a4a4893a08ba5af4eb244492293515d88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally

const iter = [1, 2, 3].values();
const log = [];
const fn = (value) => {
  log.push(value.toString());
  return value % 2 == 1;
};

assertEq(iter.every(fn), false);
assertEq(log.join(','), '1,2');

if (typeof reportCompare === 'function')
  reportCompare(0, 0);