Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: src/runtime.h

Issue 329253004: Optimize Map/Set.prototype.forEach (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update count to fix merge issue Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/collection.js ('K') | « src/objects-inl.h ('k') | src/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) \
« src/collection.js ('K') | « src/objects-inl.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698