Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index f930eab1507c8b611473ed0950bbe3e07187727a..6f69ac57a754c635f701e87d738c34418829d461 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -319,6 +319,7 @@ namespace internal { |
F(UnwindAndFindExceptionHandler, 0, 1) \ |
F(PromoteScheduledException, 0, 1) \ |
F(ThrowReferenceError, 1, 1) \ |
+ F(ThrowApplyNonFunction, 1, 1) \ |
F(NewTypeError, 2, 1) \ |
F(NewSyntaxError, 2, 1) \ |
F(NewReferenceError, 2, 1) \ |
@@ -349,7 +350,8 @@ namespace internal { |
F(IS_VAR, 1, 1) \ |
F(IncrementStatsCounter, 1, 1) \ |
F(ThrowConstructedNonConstructable, 1, 1) \ |
- F(ThrowCalledNonCallable, 1, 1) |
+ F(ThrowCalledNonCallable, 1, 1) \ |
+ F(CreateListFromArrayLike, 1, 1) |
#define FOR_EACH_INTRINSIC_JSON(F) \ |