| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 1cad1224c2345a7c82a3dda0ae7b5df861d6422c..ee81a764eaa4cc6b324a10e59729f430c683176f 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -333,6 +333,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) \
|
| @@ -340,7 +341,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) \
|
|
|