Bumping manifests a=b2g-bump
[gecko.git] / js / src / builtin / Map.js
blob8c734277f726d568fad1aaa5817c24bab127438c
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 /* ES6 20121122 draft 15.14.4.4. */
7 function MapForEach(callbackfn, thisArg = undefined) {
8     /* Step 1-2. */
9     var M = this;
10     if (!IsObject(M))
11         ThrowError(JSMSG_INCOMPATIBLE_PROTO, "Map", "forEach", typeof M);
13     /* Step 3-4. */
14     try {
15         callFunction(std_Map_has, M);
16     } catch (e) {
17         // has will throw on non-Map objects, throw our own error in that case.
18         ThrowError(JSMSG_INCOMPATIBLE_PROTO, "Map", "forEach", typeof M);
19     }
21     /* Step 5. */
22     if (!IsCallable(callbackfn))
23         ThrowError(JSMSG_NOT_FUNCTION, DecompileArg(0, callbackfn));
25     /* Step 6-8. */
26     var entries = callFunction(std_Map_iterator, M);
27     while (true) {
28         var result = callFunction(std_Map_iterator_next, entries);
29         if (result.done)
30             break;
31         var entry = result.value;
32         callFunction(callbackfn, thisArg, entry[1], entry[0], M);
33     }