Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 // map.keys() and map.values() return iterators over the key or the value,
2 // respectively, of each key-value pair in the map.
4 load(libdir + "iteration.js");
6 var data = [["one", 1], ["two", 2], ["three", 3], ["four", 4]];
7 var m = Map(data);
9 var ki = m.keys();
10 assertIteratorNext(ki, "one");
11 assertIteratorNext(ki, "two");
12 assertIteratorNext(ki, "three");
13 assertIteratorNext(ki, "four");
14 assertIteratorDone(ki, undefined);
16 assertEq([k for (k of m.keys())].toSource(), ["one", "two", "three", "four"].toSource());
17 assertEq([k for (k of m.values())].toSource(), [1, 2, 3, 4].toSource());
18 assertEq([k for (k of m.entries())].toSource(), data.toSource());