| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index f588210aff1c321b42837e54e59e8c07e5d7742c..ad02aa4b6a573fa094f497138c4b63473e50d931 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -248,7 +248,8 @@ namespace internal {
|
| F(GeneratorGetInputOrDebugPos, 1, 1) \
|
| F(GeneratorGetContinuation, 1, 1) \
|
| F(GeneratorGetSourcePosition, 1, 1) \
|
| - F(GeneratorGetResumeMode, 1, 1)
|
| + F(GeneratorGetResumeMode, 1, 1) \
|
| + F(AsyncGeneratorResolve, 3, 1)
|
|
|
| #ifdef V8_I18N_SUPPORT
|
| #define FOR_EACH_INTRINSIC_I18N(F) \
|
| @@ -332,13 +333,15 @@ 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) \
|
| F(ThrowTypeError, -1 /* >= 1 */, 1) \
|
| F(ThrowUndefinedOrNullToObject, 1, 1) \
|
| F(Typeof, 1, 1) \
|
| - F(UnwindAndFindExceptionHandler, 0, 1)
|
| + F(UnwindAndFindExceptionHandler, 0, 1) \
|
| + F(CreateAsyncFromSyncIterator, 1, 1)
|
|
|
| #define FOR_EACH_INTRINSIC_LITERALS(F) \
|
| F(CreateRegExpLiteral, 4, 1) \
|
| @@ -407,7 +410,7 @@ namespace internal {
|
| F(TryMigrateInstance, 1, 1) \
|
| F(IsJSGlobalProxy, 1, 1) \
|
| F(DefineAccessorPropertyUnchecked, 5, 1) \
|
| - F(DefineDataPropertyInLiteral, 6, 1) \
|
| + F(DefineDataPropertyInLiteral, 4, 1) \
|
| F(GetDataProperty, 2, 1) \
|
| F(GetConstructorName, 1, 1) \
|
| F(HasFastPackedElements, 1, 1) \
|
|
|