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

Unified Diff: src/builtins/builtins.h

Issue 2752273003: [builtins] Implement Array.prototype.reduce in the CSA (Closed)
Patch Set: Cleanup Created 3 years, 9 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
Index: src/builtins/builtins.h
diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
index 9afe3792ee2471b24fa870b9dbf9e7039c1dbd80..021687b304c72efd9245e6bd39f5189614f5bfb7 100644
--- a/src/builtins/builtins.h
+++ b/src/builtins/builtins.h
@@ -280,9 +280,11 @@ class Isolate;
TFJ(ArrayForEachLoopContinuation, 6) \
TFJ(ArrayEveryLoopContinuation, 6) \
TFJ(ArraySomeLoopContinuation, 6) \
+ TFJ(ArrayReduceLoopContinuation, 6) \
TFJ(ArrayForEach, 2) \
TFJ(ArrayEvery, 2) \
TFJ(ArraySome, 2) \
+ TFJ(ArrayReduce, 2) \
/* ES6 #sec-array.prototype.entries */ \
TFJ(ArrayPrototypeEntries, 0) \
/* ES6 #sec-array.prototype.keys */ \

Powered by Google App Engine
This is Rietveld 408576698