| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 7fb64423d4ccf909f929c826fb90d4b84422606e..b04342d3d1e31813c64c3257835da8a20cd8a4b3 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -247,6 +247,7 @@ namespace internal {
|
| F(GeneratorGetFunction, 1, 1) \
|
| F(GeneratorGetReceiver, 1, 1) \
|
| F(GeneratorGetInputOrDebugPos, 1, 1) \
|
| + F(AsyncGeneratorGetAwaitInput, 1, 1) \
|
| F(GeneratorGetContinuation, 1, 1) \
|
| F(GeneratorGetSourcePosition, 1, 1) \
|
| F(GeneratorGetResumeMode, 1, 1)
|
| @@ -333,13 +334,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) \
|
|
|