| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index d6ed83000c74676f2b195fbc1a678f3442b7903c..7b813cc3ae27088b049862a854b67bd752c224f0 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) \
|
|
|