Index: src/heap-symbols.h |
diff --git a/src/heap-symbols.h b/src/heap-symbols.h |
index d8735fa25b6a028b3afdded506e99f547cfa583a..b9c136e040b7985bc13f89a766be35ae3b4c2dd7 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") \ |
@@ -233,7 +234,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 |