Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 667ba3a3319af1f627b710bbbc16b8dd720c5f10..29cc8e592a0315d7488a4f5abee42c1db55ba3ae 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) \ |