blob: f806478befcbb8e52bb5c12c070c269ab2f6179f (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// for-of on a proxy causes a predictable sequence of trap calls.
load(libdir + "iteration.js");
var s = '';
var i = 0;
var next_fn = new Proxy(function() {}, {
apply() {
s += "n";
if (i == 3)
return { value: undefined, done: true };
return { value: i++, done: false };
}
});
var it = new Proxy({}, {
get(target, property, receiver) {
assertEq(property, "next");
s += "N";
return next_fn;
}
});
var iterator_fn = new Proxy(function() {}, {
apply() {
s += 'i';
return it;
}
});
var obj = new Proxy({}, {
get: function (receiver, name) {
assertEq(name, Symbol.iterator);
s += "I";
return iterator_fn;
}
});
for (var v of obj)
s += v;
assertEq(s, 'IiNn0n1n2n');
|