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

Unified Diff: src/heap-symbols.h

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: Created 3 years, 11 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/heap-symbols.h
diff --git a/src/heap-symbols.h b/src/heap-symbols.h
index bdb0a21507d346e60c92b8a17e418dff93a27ff6..3b373c8b12a583430164d85fcbc5f9e00dc9b6b0 100644
--- a/src/heap-symbols.h
+++ b/src/heap-symbols.h
@@ -135,6 +135,7 @@
V(RegExp_string, "RegExp") \
V(reject_string, "reject") \
V(resolve_string, "resolve") \
+ V(return_string, "return") \
V(script_string, "script") \
V(second_string, "second") \
V(setPrototypeOf_string, "setPrototypeOf") \
@@ -232,7 +233,8 @@
V(species_symbol, Symbol.species) \
V(split_symbol, Symbol.split) \
V(to_primitive_symbol, Symbol.toPrimitive) \
- V(unscopables_symbol, Symbol.unscopables)
+ V(unscopables_symbol, Symbol.unscopables) \
+ V(async_iterator_symbol, Symbol.asyncIterator)
// Well-Known Symbols are "Public" symbols, which have a bit set which causes
// them to produce an undefined value when a load results in a failed access

Powered by Google App Engine
This is Rietveld 408576698