Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 744156c1ed052745a2535e4c176e2e469df06800..1c2bc73f33c8561340920e269919166909bfbf0f 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -333,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) \ |
@@ -408,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) \ |