| 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)
|
|
|
| #define FOR_EACH_INTRINSIC_LITERALS(F) \
|
| F(CreateRegExpLiteral, 4, 1) \
|
|
|