summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Iterator/prototype/find/short-circuit-on-match.js
blob: 8ce7c5a35453ca212e76d77f7a0fb1d1aa04fc4f (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 == 0;
};

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

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