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

Unified Diff: src/runtime/runtime.h

Issue 2637403008: [async-iteration] add support for for-await-of loops in Async Functions (Closed)
Patch Set: ...and uncomment the previously failing tests... Created 3 years, 10 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/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 81a659393beb54dc0f69d459d74f5a943148ea0f..3db5db3e501093e80b01676e0c9084371e461a27 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -319,6 +319,7 @@ namespace internal {
F(ThrowInvalidStringLength, 0, 1) \
F(ThrowIteratorResultNotAnObject, 1, 1) \
F(ThrowSymbolIteratorInvalid, 0, 1) \
+ F(ThrowSymbolAsyncIteratorInvalid, 0, 1) \
F(ThrowNotGeneric, 1, 1) \
F(ThrowReferenceError, 1, 1) \
F(ThrowStackOverflow, 0, 1) \
@@ -326,7 +327,8 @@ namespace internal {
F(ThrowUndefinedOrNullToObject, 1, 1) \
F(Typeof, 1, 1) \
F(UnwindAndFindExceptionHandler, 0, 1) \
- F(AllowDynamicFunction, 1, 1)
+ F(AllowDynamicFunction, 1, 1) \
+ F(CreateAsyncFromSyncIterator, 1, 1)
adamk 2017/02/14 18:47:53 Nit: Besides AllowDynamicFunction, the rest of thi
caitp 2017/02/14 21:40:58 fixed sorting (Didn't touch AllowDynamicFunction t
#define FOR_EACH_INTRINSIC_LITERALS(F) \
F(CreateRegExpLiteral, 4, 1) \

Powered by Google App Engine
This is Rietveld 408576698