| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index 286af0949bc9f892a37a81d8afa60fd36d788deb..e9fcc0b8d9da8de1ad5e2599b21b4a4a767f7352 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -275,6 +275,9 @@ namespace internal {
|
| \
|
| F(SetIteratorInitialize, 3, 1) \
|
| F(SetIteratorNext, 1, 1) \
|
| + F(SetIteratorCurrentKey, 1, 1) \
|
| + F(SetIteratorHasMore, 1, 1) \
|
| + F(SetIteratorMoveNext, 1, 1) \
|
| \
|
| /* Harmony maps */ \
|
| F(MapInitialize, 1, 1) \
|
| @@ -287,6 +290,10 @@ namespace internal {
|
| \
|
| F(MapIteratorInitialize, 3, 1) \
|
| F(MapIteratorNext, 1, 1) \
|
| + F(MapIteratorCurrentKey, 1, 1) \
|
| + F(MapIteratorCurrentValue, 1, 1) \
|
| + F(MapIteratorHasMore, 1, 1) \
|
| + F(MapIteratorMoveNext, 1, 1) \
|
| \
|
| /* Harmony weak maps and sets */ \
|
| F(WeakCollectionInitialize, 1, 1) \
|
|
|