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

Unified Diff: src/heap-symbols.h

Issue 2645923003: [async-iteration] expose Symbol.asyncIterator behind flag --harmony-async-iteration (Closed)
Patch Set: for landing 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
« no previous file with comments | « src/flag-definitions.h ('k') | test/mjsunit/harmony/symbol-async-iterator.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap-symbols.h
diff --git a/src/heap-symbols.h b/src/heap-symbols.h
index cf8739167e7e1e252d1344747f714454b62febdc..4b55b50edfb7f798ce6eece92d633184c232cc43 100644
--- a/src/heap-symbols.h
+++ b/src/heap-symbols.h
@@ -242,15 +242,16 @@
V(strict_function_transition_symbol) \
V(uninitialized_symbol)
-#define PUBLIC_SYMBOL_LIST(V) \
- V(iterator_symbol, Symbol.iterator) \
- V(intl_fallback_symbol, IntlFallback) \
- V(match_symbol, Symbol.match) \
- V(replace_symbol, Symbol.replace) \
- V(search_symbol, Symbol.search) \
- V(species_symbol, Symbol.species) \
- V(split_symbol, Symbol.split) \
- V(to_primitive_symbol, Symbol.toPrimitive) \
+#define PUBLIC_SYMBOL_LIST(V) \
+ V(async_iterator_symbol, Symbol.asyncIterator) \
+ V(iterator_symbol, Symbol.iterator) \
+ V(intl_fallback_symbol, IntlFallback) \
+ V(match_symbol, Symbol.match) \
+ V(replace_symbol, Symbol.replace) \
+ V(search_symbol, Symbol.search) \
+ V(species_symbol, Symbol.species) \
+ V(split_symbol, Symbol.split) \
+ V(to_primitive_symbol, Symbol.toPrimitive) \
V(unscopables_symbol, Symbol.unscopables)
// Well-Known Symbols are "Public" symbols, which have a bit set which causes
« no previous file with comments | « src/flag-definitions.h ('k') | test/mjsunit/harmony/symbol-async-iterator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698