| Index: src/runtime/runtime-object.cc
|
| diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc
|
| index b3ac1864ba822a6a91ca7bd5a112f1b2acbf8e2d..da1ec4977be36f1965f86e60cbfd5e08c8e02fdd 100644
|
| --- a/src/runtime/runtime-object.cc
|
| +++ b/src/runtime/runtime-object.cc
|
| @@ -1072,9 +1072,7 @@ static Object* Runtime_NewObjectHelper(Isolate* isolate,
|
|
|
| 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);
|
|
|
| if (function->has_initial_map()) {
|
| if (function->initial_map()->instance_type() == JS_FUNCTION_TYPE) {
|
|
|