blob: 76305354027ded5c4d203b455f1539106b7e1547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally
const log = [];
const handlerProxy = new Proxy({}, {
get: (target, key, receiver) => (...args) => {
log.push(`${key}: ${args[1].toString()}`);
const item = Reflect[key](...args);
if (typeof item === 'function')
return item.bind(receiver);
return item;
},
});
const iter = new Proxy({
next: () => ({ done: false, value: 0 }),
}, handlerProxy);
const wrap = Iterator.from(iter);
// Call next multiple times. Should not call `get` on proxy.
wrap.next();
wrap.next();
wrap.next();
assertEq(
log.join('\n'),
`get: Symbol(Symbol.iterator)
get: next`
);
if (typeof reportCompare === 'function')
reportCompare(0, 0);
|