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

Unified Diff: src/interpreter/constant-array-builder.h

Issue 2637403008: [async-iteration] add support for for-await-of loops in Async Functions (Closed)
Patch Set: Rebase now that try/finally is fixed 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/interpreter/constant-array-builder.h
diff --git a/src/interpreter/constant-array-builder.h b/src/interpreter/constant-array-builder.h
index b03b2d783f3729d3020b31da71254a219b234ac6..86e7c0818bbc48936377e78a010a6b191eb898dd 100644
--- a/src/interpreter/constant-array-builder.h
+++ b/src/interpreter/constant-array-builder.h
@@ -20,9 +20,10 @@ class AstValue;
namespace interpreter {
// Constant array entries that represent singletons.
-#define SINGLETON_CONSTANT_ENTRY_TYPES(V) \
- V(IteratorSymbol, iterator_symbol) \
- V(HomeObjectSymbol, home_object_symbol) \
+#define SINGLETON_CONSTANT_ENTRY_TYPES(V) \
+ V(IteratorSymbol, iterator_symbol) \
+ V(AsyncIteratorSymbol, async_iterator_symbol) \
+ V(HomeObjectSymbol, home_object_symbol) \
V(EmptyFixedArray, empty_fixed_array)
// A helper class for constructing constant arrays for the

Powered by Google App Engine
This is Rietveld 408576698