Index: src/runtime.h |
diff --git a/src/runtime.h b/src/runtime.h |
index d7566c297d7c5a3ec3f533a42200666b44659cd8..b24e1104ea90d1c3fd890f5c10fdd6fcc6ab1b7b 100644 |
--- a/src/runtime.h |
+++ b/src/runtime.h |
@@ -82,6 +82,7 @@ namespace internal { |
F(GetFunctionDelegate, 1, 1) \ |
F(GetConstructorDelegate, 1, 1) \ |
F(NewArgumentsFast, 3, 1) \ |
+ F(NewStrictArgumentsFast, 3, 1) \ |
F(LazyCompile, 1, 1) \ |
F(LazyRecompile, 1, 1) \ |
F(NotifyDeoptimized, 1, 1) \ |
@@ -284,6 +285,9 @@ namespace internal { |
F(IsJSProxy, 1, 1) \ |
F(GetHandler, 1, 1) \ |
\ |
+ /* Catch context extension objects */ \ |
+ F(CreateCatchExtensionObject, 2, 1) \ |
+ \ |
/* Statements */ \ |
F(NewClosure, 3, 1) \ |
F(NewObject, 1, 1) \ |
@@ -298,7 +302,7 @@ namespace internal { |
/* Contexts */ \ |
F(NewFunctionContext, 1, 1) \ |
F(PushWithContext, 1, 1) \ |
- F(PushCatchContext, 2, 1) \ |
+ F(PushCatchContext, 1, 1) \ |
F(DeleteContextSlot, 2, 1) \ |
F(LoadContextSlot, 2, 2) \ |
F(LoadContextSlotNoReferenceError, 2, 2) \ |