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

Unified Diff: src/runtime/runtime.h

Issue 2540593003: Move desugaring of super calls with trailing spread to one runtime call. (Closed)
Patch Set: Change some comments and simplify an else Created 4 years, 1 month 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/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 65cb1f81571461502450727322739ad352332fc1..75c673efcab76b45f90b5c676a8452d8b247019c 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -57,7 +57,8 @@ namespace internal {
F(ArraySpeciesConstructor, 1, 1) \
F(ArrayIncludes_Slow, 3, 1) \
F(ArrayIndexOf, 3, 1) \
- F(SpreadIterablePrepare, 1, 1)
+ F(SpreadIterablePrepare, 1, 1) \
+ F(SpreadIterablePrepareVarArgs, -1, 1)
Benedikt Meurer 2016/11/29 13:15:40 Nit: Can we use "Varargs" instead of "VarArgs"?
petermarshall 2016/11/29 13:32:27 Done
#define FOR_EACH_INTRINSIC_ATOMICS(F) \
F(ThrowNotIntegerSharedTypedArrayError, 1, 1) \

Powered by Google App Engine
This is Rietveld 408576698