Index: src/runtime/runtime-classes.cc |
diff --git a/src/runtime/runtime-classes.cc b/src/runtime/runtime-classes.cc |
index 121530feab40d641210e11c559cbe6e0607b0c7c..97a19c1bc78ac84f1aadb2dcd55efee343725a7c 100644 |
--- a/src/runtime/runtime-classes.cc |
+++ b/src/runtime/runtime-classes.cc |
@@ -470,9 +470,7 @@ RUNTIME_FUNCTION(Runtime_HandleStepInForDerivedConstructors) { |
CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0); |
Debug* debug = isolate->debug(); |
// Handle stepping into constructors if step into is active. |
- if (debug->StepInActive()) { |
- debug->HandleStepIn(function, Handle<Object>::null(), 0, true); |
- } |
+ if (debug->StepInActive()) debug->HandleStepIn(function, true); |
return *isolate->factory()->undefined_value(); |
} |